这个问题简直让我困惑。我为我的应用上传了一个新图标,我手机仪表板上的应用图标发生了变化。但是,通知图标仍然是默认的绿色浮动 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);
提前致谢。
阿波罗的战车
侃侃尔雅
相关分类