我有一个音乐控制通知,允许用户开始/停止音乐。我想要与 Google Play 音乐应用通知完全相同的行为:当音乐播放时,服务在前台,通知不可取消,当音乐不播放时,服务不再在前台,通知可以删除。它工作正常,但是当我取消服务的前台时,通知会在重新出现之前迅速删除。
这是我的代码,首先是我如何构建通知:
NotificationCompat.Builder notifBuilder =
new android.support.v7.app.NotificationCompat.Builder(getApplicationContext())
.setStyle(new android.support.v7.app.NotificationCompat.MediaStyle()
.setShowActionsInCompactView(1, 2, 3)
.setShowCancelButton(true)
.setCancelButtonIntent(deletePendingIntent)))
.setSmallIcon(R.drawable.notif_logo)
.setColor(ResourcesCompat.getColor(getResources(), R.color.blue, getTheme()))
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setShowWhen(false);
notifBuilder.setContentIntent(pendingIntent);
notifBuilder.setDeleteIntent(deletePendingIntent);
以下是我开始和更新通知的方式:
private void showNotification(NotificationCompat.Builder notifBuilder, boolean foreground) {
if (foreground) {
startForeground(NOTIFICATION_ID, notifBuilder.build());
} else {
stopForeground(false);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(NOTIFICATION_ID, notifBuilder.build());
}
}
如果我使用 stopForeground(false),通知在运行后仍然无法取消。如果我使用 stopForeground(true),通知会很快被删除,然后再次添加,这会产生奇怪的闪烁。
如何在服务退出前台后获得可取消的通知,而无需删除然后再次添加通知?