NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
builder.setContentTitle(description.getTitle())
.setAutoCancel(false);
NotificationManager notificationManager=(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification notificationCompat=builder.build();
notificationManager.notify(MY_ID,notificationCompat);
startForeground(MY_ID,notificationCompat);
Использованный выше код для запуска службы в фоновом режиме. Но когда деятельность закрыта, служба вызова OnDestroyКак использовать startForeground с NotificationCompat.Builder?
"не работает"? Что не работает? –
когда дисплей отключается служебные вызовы onDestroy –