adv中的Android通知颜色始终为白色

时间:2016-03-15 15:09:02

标签: android notifications android-5.0-lollipop android-5.1.1-lollipop

此代码会创建通知:

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它给出相同的白色。怎么了?

0 个答案:

没有答案