我正在使用Notification.Builder类进行通知。当我在ICS中使用setLargeIcon时,通知的背景颜色变成了gey背景,使得内容文本的可读性和时间都很差。如何使背景颜色为黑色?请参阅下面的代码示例。
Builder updateComplete = new Notification.Builder(getApplicationContext());
updateComplete.setAutoCancel(true);
updateComplete.setContentIntent(contentIntent);
updateComplete.setContentText(message);
updateComplete.setContentTitle(from);
updateComplete.setLargeIcon(nBitmap);
updateComplete.setSmallIcon(R.drawable.nIcon);
updateComplete.setWhen(new Date());