Android 通知图标保持默认图标,即使更改后

这个问题简直让我困惑。我为我的应用上传了一个新图标,我手机仪表板上的应用图标发生了变化。但是,通知图标仍然是默认的绿色浮动 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);

提前致谢。


郎朗坤
浏览 244回答 2
2回答

阿波罗的战车

尝试使缓存无效:Android Studio 菜单 -> 文件 -> 使缓存无效/重启并在您的手机中卸载该应用程序

侃侃尔雅

Android 缓存通知通道设置,因此在构建器中更改通道 ID 也有效。我不知道如何使这个缓存无效。NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context,"456")
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java