【问题标题】:Push Notification icon turns white in Android lollipop and above推送通知图标在 Android lollipop 及更高版本中变为白色
【发布时间】:2017-04-17 16:05:44
【问题描述】:

我无法向设备 SDK >= 21 发送通知。 通知图标为空白。

到目前为止我尝试了什么:

  1. 将 android 目标 sdk 更改为 20

  2. 我检查了棒棒糖设备的 if 语句:

    if(android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP);
    
  3. 我已将我的可绘制图标设置为 72*72,并将可绘制图标放置在可绘制和可绘制 v21 文件夹中两次

我尝试了以上所有方法,但通知仍然显示为空白。

我尝试了更多搜索,我在应用中添加了一个剪影图标,并在设备运行 Android Lollipop 时使用它。

有什么建议吗?这是我的 FirebaseMessagingService 类:

public class myFirebaseMessagingService extends FirebaseMessagingService {

private static final String TAG = "FirebaseMessageService";
Bitmap bitmap;

/**
 * Called when message is received.
 *
 * @param remoteMessage Object representing the message received from Firebase Cloud Messaging.
 */
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    // There are two types of messages data messages and notification messages. Data messages are handled
    // here in onMessageReceived whether the app is in the foreground or background. Data messages are the type
    // traditionally used with GCM. Notification messages are only received here in onMessageReceived when the app
    // is in the foreground. When the app is in the background an automatically generated notification is displayed.
    // When the user taps on the notification they are returned to the app. Messages containing both notification
    // and data payloads are treated as notification messages. The Firebase console always sends notification
    // messages. For more see: https://firebase.google.com/docs/cloud-messaging/concept-options
    //
    Log.d(TAG, "From: " + remoteMessage.getFrom());

    // Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Log.d(TAG, "Message data payload: " + remoteMessage.getData());
    }

    // Check if message contains a notification payload.
    if (remoteMessage.getNotification() != null) {
        Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
        sendNotification(remoteMessage.getNotification().getBody());
    }

    //The message which i send will have keys named [message, image, AnotherActivity] and corresponding values.
    //You can change as per the requirement.
    //message will contain the Push Message
    String message = remoteMessage.getData().get("message");
    //imageUri will contain URL of the image to be displayed with Notification
    String imageUri = remoteMessage.getData().get("image");
    //If the key AnotherActivity has  value as True then when the user taps on notification, in the app AnotherActivity will be opened.
    //If the key AnotherActivity has  value as False then when the user taps on notification, in the app MainActivity will be opened.
    String TrueOrFlase = remoteMessage.getData().get("AnotherActivity");

    //To get a Bitmap image from the URL received
    bitmap = getBitmapfromUrl(imageUri);

    sendNotification(message, bitmap, TrueOrFlase);

}


/**
 * Create and show a simple notification containing the received FCM message.
 */

private void sendNotification(String messageBody, Bitmap image, String TrueOrFalse) {
    Intent intent = new Intent(this, SplashScreen.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    intent.putExtra("AnotherActivity", TrueOrFalse);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);

    Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)

            .setLargeIcon(image)/*Notification icon image*/
                .setSmallIcon(R.drawable.ahed_icon)
                .setContentTitle(messageBody)
                .setStyle(new NotificationCompat.BigPictureStyle()
                        .bigPicture(image))/*Notification with Image*/
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());

}

/*
*To get a Bitmap image from the URL received
* */
public Bitmap getBitmapfromUrl(String imageUrl) {
    try {
        URL url = new URL(imageUrl);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setDoInput(true);
        connection.connect();
        InputStream input = connection.getInputStream();
        Bitmap bitmap = BitmapFactory.decodeStream(input);
        return bitmap;

    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
        return null;

    }
}


private void sendNotification(String messageBody) {
    Intent intent = new Intent(this, SplashScreen.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);

    Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)

            .setSmallIcon(R.drawable.ahed_icon)
            .setContentTitle("FCM Message")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
}

这是我想在通知中显示的可绘制对象:

我准备提供的任何进一步信息。

【问题讨论】:

  • 我遇到了同样的问题。当我从firebase推送通知时,在某些设备上它可以在某些设备上显示为空白。如果我发现有用的东西,我会尝试您尝试过的方法并随时通知您。
  • @koksalb 试试看告诉我

标签: android firebase android-notifications firebase-cloud-messaging


【解决方案1】:

对棒棒糖及以上设备使用 largeIcon,它会像魅力一样工作

    NotificationCompat.Builder notificationBuilder = new 
    NotificationCompat.Builder(this)
    .setSmallIcon(R.drawable.ahed_icon)
    .setLargeIcon(bitmapImage)
    .setContentTitle("FCM Message")
    .setContentText(messageBody)
    .setAutoCancel(true)
    .setSound(defaultSoundUri)
    .setContentIntent(pendingIntent);

【讨论】:

  • 同样不工作!!如果它真的在那里工作,我们会联系,这样我们就可以在我这边解决它
  • 我可以在设置 largeIcon 后获得您最新的通知代码吗?
  • 只是我在第一个发送通知方法中添加了它,它有三个参数。我认为代码有问题,你可以传递你自己的
  • 您的 android studio 的即时运行是否已启用?如果是,则清理您的项目,重新构建并再次运行。有时它不起作用,重建项目后它起作用。
  • 同样的结果你真的可以帮我,所以我们可以在我这边解决它