在S3上自定义LED

时间:2014-01-16 22:27:17

标签: java android notifications

此代码在我的Nexus 4上完美运行。但在我的Galaxy S3上没有任何反应。

任何想法为什么?

public void test(){
        if(notificationManager == null) {
            Toast.makeText(this, "Mist", Toast.LENGTH_SHORT).show();
        } else {
            Notification notification = new Notification.Builder(this)

                .setLights(Color.argb(1, red, green, blue), 500, 0)
                .setContentText("test").setSmallIcon(R.drawable.test)
                .setContentTitle("")
                .build();           


            notificationManager.notify(0, notification);
        }
    }

1 个答案:

答案 0 :(得分:0)

这是一个老问题,但有人可能会使用答案:alpha值应该是ff而不是01;