【发布时间】:2016-02-28 05:21:57
【问题描述】:
我已通过以下代码生成本地通知。
Notification notification = new Notification.Builder(context)
.setAutoCancel(true)
.setContentTitle("title")
.setContentText("message")
.setWhen(System.currentTimeMillis())
.setSmallIcon(getNotificationIcon())
.build();
private static int getNotificationIcon() {
boolean useWhiteIcon = (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP);
return useWhiteIcon ? R.drawable.icon_loli : R.drawable.ic_launcher;
}
其中 icon icon_loli 是 16*16 白色图标。仍然适用于 21 以下的 api 版本,它工作得很好,但在棒棒糖及更高版本上,它会显示如下图所示的通知
【问题讨论】:
标签: android notifications icons android-5.0-lollipop