Android Notification LED不使用我的Color

时间:2013-02-19 09:16:13

标签: android notifications led

我正在尝试使用也在我的S3上使用通知LED的通知,但由于某种原因,颜色将始终为蓝色(我猜这是默认值?)。我尝试使用不同的颜色,但没有任何变化。其他应用程序(如Whatsapp,Gmail和Facebook在显示不同颜色的灯光时没有任何问题)。

Notification.Builder noteBuilder = new Notification.Builder(context)
                .setAutoCancel(true)
                .setPriority(Notification.PRIORITY_DEFAULT)
                .setSmallIcon(R.drawable.ic_launcher)
                .setContentTitle(ContentTitle)
                .setContentText(ContentText)
                .setLights(Color.YELLOW, 500, 500)
                ;

Intent noteIntent = new Intent(context,HoofdScherm.class);
PendingIntent notePendingIntent = PendingIntent.getActivity(context, 0, noteIntent, PendingIntent.FLAG_CANCEL_CURRENT);
noteBuilder.setContentIntent(notePendingIntent);

Notification note = noteBuilder.build();
note.ledARGB = Color.YELLOW;
NotificationManager mgr = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
mgr.notify(0,note);

2 个答案:

答案 0 :(得分:11)

您需要确保通过设置

覆盖所有默认设置

notification.defaults = 0;

答案 1 :(得分:-1)

看看下面的来源。在S3上完美运作:

 NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(ctx)
                        .setPriority(Notification.PRIORITY_HIGH)
                        .setSmallIcon(getNotificationIcon())
                        .setColor(0xff493C7C)
                        .setContentTitle(ctx.getString(R.string.app_name))
                        .setContentText(msg)
                        .setDefaults(Notification.DEFAULT_SOUND)
                        .setLights(0xff493C7C, 1000, 1000)
                        .setStyle(new NotificationCompat.BigTextStyle().bigText(styledMsg));