通知操作图标未显示

Notification action icon didn't show

我尝试在 Android 中显示通知,并使用 this Link 中的代码。 在一些消息来源中,人们说图标应该是全白的,一些消息来源说我应该使用 .png 而不是 vector.

我尝试了所有这些方法,但没有人不帮助我。

我试试这个代码:

Notification newMessageNotification =
    new Notification.Builder(mContext)
            .setSmallIcon(R.drawable.ic_message)
            .setContentTitle(getString(R.string.title))
            .setContentText(getString(R.string.content))
            .addAction(action))
            .build();

在与该主题有关的所有问题中搜索了大约 1 小时后,我终于发现这是因为我的 android 版本! 看下图。 Api24级以上,设计中没有图标!!

通知图标必须全白

如果你想支持Lollipop Material 图标然后为Lollipop 和更高版本 制作透明图标。请参考以下https://design.google.com/icons/

对于 Nougat,他们更改了通知图标的设计

https://android-developers.googleblog.com/2016/06/notifications-in-android-n.html

您会注意到新通知中没有图标;相反,在通知栏的受限 space 中为标签本身提供了更多空间。但是,通知操作图标仍然是必需的,并继续在 Android 的旧版本和 Android Wear 等设备上使用。