Notification.Builder通知显示问题

时间:2013-01-29 05:10:38

标签: android notifications

我正在使用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());

0 个答案:

没有答案