ONGOING_EVENT
作成するために、次のコードを持っている
隠す:今継続的な通知
Notification notification = new Notification(R.drawable.icon, "someText" , System.currentTimeMillis());
notification.flags |= Notification.FLAG_ONGOING_EVENT;
notification.flags |= Notification.FLAG_FOREGROUND_SERVICE;
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, Home.class), 0);
notification.setLatestEventInfo(this, "someTitle", "someText", contentIntent);
notificationManager.notify(SOME_ID, notification);
を、私は後でそれを殺したい:しかし
notificationManager.cancel(SOME_ID);
を、通知が残ります。これの原因は何でしょうか?
http://stackoverflow.com/questions/5232650/android-notification-deleteこれはあなたのポーズに役立つかもしれません。 – drooooooid