miyabihitoの日記

個人的な技術メモ

Notification

NotificationManager
Notificationの管理
getSysetemService(NOTIFICATION_SERVICE)で取得
メソッド
cancel(int id):指定idのNotificationの削除
cancelAll:自アプリのNotificationを全て削除
notify(id, Notification):ステータスバーへのNotificationの表示

Notification
ステータスバーや通知領域の表示・動作内容管理
通知領域での扱いを各種フラグで設定できる(flagsプロパティ)(LEDを光らせたりもできるっぽい)

Notification(icon, tickerText, when)
ステータスバーの設定
when:表示する時刻,普通System.currentTimeMillis?

setLatestEventInfo(context, title, text, pendingintent)
通知領域の設定