即使更改后,Android通知图标仍然是默认图标

时间:2018-10-13 21:41:59

标签: java android notifications

这个问题使我感到困惑。我为我的应用上传了一个新图标,但手机仪表板上的应用图标已更改。但是,通知图标仍然是默认的绿色浮动android系统,尽管我在设置通知时声明了一个不同的图标-我还在行号附近的Android Studio预览中看到了正确的图标,但仍然没有。

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context,"123")
                .setSmallIcon(R.mipmap.ic_launcher_foreground)
                .setLargeIcon(BitmapFactory.decodeResource(context.getResources(),
                        R.mipmap.ic_launcher_foreground))
                .setContentTitle("Reminder: "+title)
                .setContentText("Go do it TIGER!")
                .setPriority(NotificationCompat.PRIORITY_HIGH)
                // Set the intent that will fire when the user taps the notification
                .setContentIntent(pendingIntent)
                .setAutoCancel(true);

谢谢。

2 个答案:

答案 0 :(得分:1)

尝试通过以下方式使缓存无效:

Android Studio菜单->文件->使缓存无效/重启

然后在手机中卸载应用程序

答案 1 :(得分:0)

Android会缓存通知渠道设置,因此在构建器中更改渠道ID也可以。我不知道如何使此缓存无效。

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context,"456")