我将两个按钮添加到我的应用程序中设置为 API 级别 8 的通知中。问题是这两个按钮显示为两个大的灰色按钮,与其余通知完全不合适。我已经在 Nexus 7 和 Galaxy Nexus 上对其进行了测试。
我见过的所有示例都有漂亮的黑色按钮,例如来电通知: http ://www.androidng.com/wp-content/uploads/2012/07/android-jelly-bean-notifications.jpeg
我想这很容易,但今天没有这样的运气。有谁知道我可能在哪里走错了路?下面是我的代码片段,它使用最新的支持库生成通知。
NotificationManager nm = (NotificationManager) this
.getSystemService(Context.NOTIFICATION_SERVICE);
android.support.v4.app.NotificationCompat.Builder builder = new android.support.v4.app.NotificationCompat.Builder(this);
builder.setContentIntent(contentIntent)
.setSmallIcon(R.drawable.ic_stat_radio)
.setContentTitle(message)
.setTicker(message)
.setPriority(android.support.v4.app.NotificationCompat.PRIORITY_HIGH)
.setWhen(System.currentTimeMillis())
.setAutoCancel(false)
.addAction(android.R.drawable.ic_btn_speak_now, "Play", contentIntent)
.addAction(android.R.drawable.ic_dialog_map, "Stop", contentIntent)
.setContentText(message);
Notification n = builder.build();
//nm.notify(0, n);
startForeground(1, n);