android通知图标显示怪异

问题描述 投票:0回答:2

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);
android notifications
2个回答
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;
   }

并确保您的图像背景应该是透明的.Version棒棒糖及以上需要透明背景图像进行通知。


0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.