2

我使用 NotificationBuilder 为 android 创建了通知,尽管我设置了 .setColor(),但它忽略了颜色并将小图标的背景颜色设置为黑色。我的目标 SDK 是 23,最小 SDK 是 19。我用于调试的手机有 Android Marshmallow。谢谢你的帮助。

.setContentTitle(msgTitle)
        .setSmallIcon(R.mipmap.notification_icon)
        .setColor(R.color.ColorPrime) // ColorPrime is red.
        .setLargeIcon(msgIcon)
        .setTicker(msgBody)
            .setStyle(new NotificationCompat.BigTextStyle()
                    .bigText(msgBody).setBigContentTitle(msgTitle))
        .setContentText(msgBody)
        .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
        .setPriority(Notification.PRIORITY_HIGH);

预习

4

1 回答 1

7

解决了。

而不是.setColor(R.color.ColorPrime)使用.setColor(getResources().getColor(R.color.ColorPrime))完全有效。

于 2016-06-16T18:01:07.423 回答