我正在尝试更改通知图标,在模拟器中可以:
这就是我想要的(在模拟器API级别22(安卓5.1.1)上测试)但是,当我在我的真实手机中运行这个APP(小米Redmi 3 prime与MIUI 8.0.1)也是android 5.1。 1 - 通知看起来非常非常不同。此通知图标未显示(仅显示默认应用程序图标)。
但是......为什么?我现在能做什么?
这是我的代码:
NotificationCompat.Builder b = new NotificationCompat.Builder(compat);
b.setSmallIcon((state == STATE_STOPPED) ? R.drawable.ic_stat_remove : R.drawable.check);
b.setContentText(content);
b.setContentTitle(BASE_NOTIFICATION_TITLE);
b.setOngoing(true);
b.setAutoCancel(true);
b.setColor((state == STATE_STOPPED) ? Color.RED : Color.rgb(22, 219, 28));
NotificationManager m = (NotificationManager) compat.getSystemService(NOTIFICATION_SERVICE);
m.notify(0, b.build());
只是一个非常简单的通知......有人能告诉我,有什么不对吗?或者只是MIUI关闭所有通知图标并将其设置为默认的应用程序启动图标?
谢谢!
编辑:我手机中的通知看起来像这样......
答案 0 :(得分:9)
我遇到了同样的问题,但Juan Pablo(评论Java Android - Redmi 3 (MIUI) - Notification icons cannot be changed?)给了我一个线索,现在我有了解决方案:
//notification is an object of class android.app.Notification
try {
Class miuiNotificationClass = Class.forName("android.app.MiuiNotification");
Object miuiNotification = miuiNotificationClass.newInstance();
Field field = miuiNotification.getClass().getDeclaredField("customizedIcon");
field.setAccessible(true);
field.set(miuiNotification, true);
field = notification.getClass().getField("extraNotification");
field.setAccessible(true);
field.set(notification, miuiNotification);
} catch (Exception e) {
}
现在它按预期工作。
答案 1 :(得分:5)
这是MIUI系统的行为。您无法在通知中显示不同的图标,默认情况下,它会将应用程序图标作为通知图标。