安卓彩色通知图标
2022-08-31 14:57:39
我正在开发一个应用,在其中为用户创建通知。我希望图标在状态栏中显示为白色,但在下拉通知菜单中显示时显示为蓝色。以下是Google Store应用程序正在执行的相同操作的示例。
状态栏中的白色通知:
下拉菜单中的彩色通知:
如何复制此内容?我必须设置哪些属性?
编辑:这是我当前的代码 - 我使图像全部为白色,背景透明,因此它在状态栏中看起来很好,但在通知丢弃中,图像仍然是相同的白色:
private NotificationCompat.Builder getNotificationBuilder() {
return new NotificationCompat.Builder(mainActivity)
.setDeleteIntent(deletedPendingIntent)
.setContentIntent(startChatPendingIntent)
.setAutoCancel(true)
.setSmallIcon(R.drawable.skylight_notification)
.setColor(ContextCompat.getColor(mainActivity, R.color.colorPrimary))
.setContentTitle(mainActivity.getString(R.string.notification_title))
.setContentText(mainActivity.getString(R.string.notification_prompt));
}