我正在使用Firebase进行推送通知。我正在通知托盘中显示LargeIcon和扩展图像。在某些设备中,大图标不会出现。显示空白。 我的notificaitonBuilder代码是:
var notificationBuilder = new Android.Support.V4.App.NotificationCompat.Builder(this)
.SetSmallIcon(Resource.Drawable.icon)
.SetContentTitle(App.NotificationData.Title)
.SetContentText(App.NotificationData.MessageBody)
.SetAutoCancel(true)
.SetSound(defaultSoundUri)
.SetContentIntent(pendingIntent);
if(image!=null)
{
bigImage = Bitmap.CreateScaledBitmap(image, (int)(192), (int)(192), false);
image = Bitmap.CreateScaledBitmap(image, (int)(48), (int)(48), false);
//image = Bitmap.CreateScaledBitmap(image, (int)(image.Width * multiplier), (int)(image.Height * multiplier), false);
notificationBuilder.SetLargeIcon(image);
}