通知图标未在后台的所有Android版本中显示

时间:2017-09-15 05:20:57

标签: android android-notifications

我正在进行推送通知,其中我的应用程序图标在所有Android版本的前景中正确显示,但问题是,当我的应用程序进入后台时,通知图标显示所有Android版本天气中的总白色它的棒棒糖或更大。,我也使用了透明图标并尝试了很多解决方案,但我不知道为什么没有人工作?

提前谢谢

  

尺寸

MDPI : - 24 * 24

HD​​PI : - 36 * 36

XHDPI : - 48 * 48

XXHDPI : - 72 * 72

  

MyFirebaseMessagingService.class

 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
    {
        notificationBuilder.setSmallIcon(R.drawable.notification_logo)
                .setContentTitle(title)
                .setContentText(messageBody)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);
    } else
    {
        notificationBuilder.setSmallIcon(R.drawable.notification_logo)
                .setContentTitle(title)
                .setContentText(messageBody)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);
    }
  

通知面板   enter image description here

0 个答案:

没有答案