此代码会创建通知:
NotificationCompat.Builder builder = new NotificationCompat.Builder(ctx);
builder.setContentIntent(pIntent)
.setTicker(title).setWhen(when).setContentTitle(contentTitle)
.setContentText(contentText).setDefaults(defaults);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
builder.setSmallIcon(icon);
} else {
builder.setSmallIcon(icon);
builder.setColor(color);
}
Notification notification = builder.build();
但在我的AVD设备中,所有通知都是白色的。
例如,如果color = 0xff3d8371
它给出相同的白色。怎么了?