Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android ApiDemos示例解析(28):App->Notification->NotifyWithText

Android ApiDemos示例解析(28):App->Notification->NotifyWithText

編輯:Android開發教程

除了使用Notification之外,Toast也可以用來通知用戶某件事發生了,Toast為一個透明的對話框,可以在屏幕上顯示幾秒 鐘後自動消失。功能上有點類似Tooltip。 Toast的一個特點時不會獲取屏幕焦點(Focus)從而不會影響應用的運行。

NotifyWithText介紹了使用Toast的基本方法,Toast在屏幕上顯示的時間間隔是可以控制的。Show Short Notification 和Show Long Notification就設置裡兩個不同的時間間隔。一個顯示較短的信息,一個顯示較長的信息。

Toast.makeText(NotifyWithText.this, R.string.short_notification_text,     
 Toast.LENGTH_SHORT).show();

Toast.makeText(NotifyWithText.this, R.string.long_notification_text,
 Toast.LENGTH_LONG).show();

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved