我目前正在尝试使用操作创建一个foregroundNotification,但操作+图标不会显示。
这是我的代码:
Intent intent = new Intent(KEY);
PendingIntent nextIntent = PendingIntent.getBroadcast(this, 0, intent, 0);
// Build the notification that tells the user that the service
// is ongoing
NotificationCompat.Builder foregroundNoteBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(....)
.setContentTitle(....)
.setContentText(....)
.addAction(R.drawable.pause, "Pause all messages", nextIntent);
Notification note = foregroundNoteBuilder.build();
// Update the notification
startForeground(1, note);
前台通知显示没有操作。有什么建议么?谢谢。
编辑:显然,当通知托盘中存在任何其他通知时会发生这种情况(例如“使用 GPS 搜索...”、“作为媒体设备连接”等)。关于为什么会发生这种情况的任何想法?