android通知图标显示异常

时间:2018-09-14 04:18:13

标签: android notifications

enter image description here enter image description here

我的代码如下。通知显示在第一张照片上。当我向下拖动以打开通知栏,并像第二个一样显示时。我不知道为什么会有一个显示良好的大图标和右下角,还有一个白色的空白图标...

我该如何纠正?代码如下。

builder = new NotificationCompat.Builder(context);

mRemoteViews = new RemoteViews(context.getPackageName(), R.layout.notify);

final Intent intent = new Intent(context, MainActivity.class);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Bitmap largeIcon = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon);

builder.setAutoCancel(false);
builder.setSmallIcon(R.drawable.icon);
builder.setLargeIcon(largeIcon);
builder.setContentTitle(context.getString(R.string.app_name));
builder.setOngoing(true);

2 个答案:

答案 0 :(得分:2)

我希望这对您有用

Notification notification = new Notification.Builder(getApplicationContext())
                .setContentTitle(getString(R.string.app_name))
                .setContentText("Your Content Text")
                .setSmallIcon(getNotificationIcon())
                .setWhen(System.currentTimeMillis())
                .setContentIntent(contentIntent)
                .setAutoCancel(true)
                .build();

  private int getNotificationIcon() {
        boolean useWhiteIcon = (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP);
        return useWhiteIcon ? R.drawable.app_icon_trans : R.drawable.app_icon;
   }

并确保您的图片背景应该是透明的。棒棒糖版本及以上要求透明背景图片以进行通知。

答案 1 :(得分:0)

您用于通知的图片无效/ Android不支持。 我认为您的问题是通知图标可能是彩色的。 理想情况下,图标应为单色。 android状态栏仅以两种阴影(白色+颜色)显示图标。您可以找到更多信息here