我与AP 23有问题。 似乎19、22、24和28没有问题,但是由于某种原因,当我在23级进行测试时,通知操作会显示该图标。不是文字。 其他级别则不是这种情况,其他级别都显示文本,而不显示图标。
这是我制作动作的方式:
NotificationCompat.Action actionSnooze;
if(reminder.is_locationEvent())
actionSnooze = new NotificationCompat.Action.Builder(R.drawable.ic_done_2, "Snooze to next time", snoozePendingIntent).build();
else
actionSnooze = new NotificationCompat.Action.Builder(R.drawable.ic_done_2, "Snooze 5 minutes", snoozePendingIntent).build();
然后将其添加到通知中
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(context, notification_id)
.setSmallIcon(R.drawable.ic_notification_png)
.addAction(actionSnooze)
.setSound(uri);
将操作显示为图标而不是文本时,我在做什么错?还有禁用图标的方法吗?
谢谢。