Я написал функцию уведомления и отображения на панели уведомлений:
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, но не смог найти.