【发布时间】:2017-01-25 12:12:55
【问题描述】:
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
【问题讨论】:
-
“不工作”?什么不工作?
-
当显示关闭服务调用 onDestroy
标签: android service android-notifications foreground-service