此代码在我的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);
}
}
答案 0 :(得分:0)
这是一个老问题,但有人可能会使用答案:alpha值应该是ff而不是01;