通知して通知バーに表示する関数を作成しました。
private void showNotification()
{
CharSequence title = "Hello";
CharSequence message = "Notification Demo";
NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.icon, "A Notification", System.currentTimeMillis());
Intent notificationIntent = new Intent(this, Main_Activity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
notification.setLatestEventInfo(Main_Activity.this, title, message, pendingIntent);
notificationManager.notify(NOTIFICATION_ID, notification);
}
正常に動作していますが、what way we can keep the notification steady at Notification bar
ユーザーが通知バーの「通知をクリア」ボタンを押した場合でも?
「Yahoo」アプリの通知バーをご覧ください。
このSDKの記事(http://developer.android.com/guide/topics/ui/notifiers/notifications.html#Updating)を確認しましたが、見つかりませんでした。