折叠通知时显示“制作动作”图标

时间:2016-10-11 01:49:43

标签: android android-notifications

我目前添加了两个在展开通知时显示为按钮的操作。根据文档折叠通知时,它们不会出现。某些应用也会在通知折叠时显示按钮(请参阅下面的Google Play音乐)。如何进行通知呢?

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
                context)
                .setSmallIcon(R.drawable.notification_isplaying)
                .setContentTitle(nameOnly)
                .setContentText(contentText)
                .setAutoCancel(false).setWhen(0).setContentIntent(aIntent)
                .addAction(toDisplay, text, pIntent)
                .addAction(R.drawable.ic_stop_white_36dp, context.getResources().getString(R.string.stop), sIntent)
                .setPriority(Notification.PRIORITY_MAX);

enter image description here

1 个答案:

答案 0 :(得分:2)

您需要使用MediaStyle notification并使用setShowActionsInCompactView()来设置您希望在紧凑的未展开视图中显示哪些操作,如2016年I / O的Best practices in media playback talk中所述。< / p>