应用未运行时的Android通知白圈

时间:2016-08-11 09:09:58

标签: android android-layout firebase android-notifications firebase-notifications

我正在使用Firebase通知来获取我的应用推送通知。 一切正常,但通知图标显示应用程序未运行时的白色圆圈。 我的目标是SDK版本23,我也使用Roman Nurik的通知图标生成器来生成白色透明图标。

当应用程序处于前台并正在运行时,

通知图标正确显示。 img

但是,当app处于后台或被杀时,图标会被通用白色圆圈取代。 img

这是我的通知构建器方法:

private void sendNotification(String messageTitle, String messageBody) {

    Intent intent = new Intent(this, MainActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
            PendingIntent.FLAG_ONE_SHOT);

    NotificationCompat.Builder notification = new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.ic_stat_notification_icon)
            .setContentTitle(messageTitle)
            .setContentText(messageBody)
            .setStyle(new NotificationCompat.BigTextStyle().bigText(messageBody))
            .setAutoCancel(true)
            .setPriority(Notification.PRIORITY_DEFAULT)
            .setDefaults(Notification.DEFAULT_ALL)
            .setContentIntent(pendingIntent);

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

    notificationManager.notify(0, notification.build());

}

3 个答案:

答案 0 :(得分:2)

我已经找到了类似问题的答案:Notification Icon with the new Firebase Cloud Messaging system

  

不幸的是,这是SDK中Firebase通知的限制   9.0.0。当应用程序在后台时,将使用清单(带有必要的Android着色)的发射器图标来发送消息   从控制台。

     

如果应用程序位于前台(或发送了数据消息),您应该这样做   能够使用您自己的逻辑进行自定义,您应该能够   如果从HTTP / XMPP API发送消息,则自定义图标。   现在,从控制台发送消息,您将获得此消息   行为。

似乎避免此Firebase通知错误的最佳方法是将cellForRowAtIndexPath中的targetSdkVersion更改为 19 。然后会将通知图标着色。一段时间后Firebase将解决此问题。

希望它会有所帮助

答案 1 :(得分:0)

试试这段代码:

 Intent intent = new Intent(this, TabActivity.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(getNotificationIcon())
            .setContentTitle("IDS DMS Support")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);


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

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

答案 2 :(得分:0)

我认为您需要在应用中添加一个轮廓图标,并在设备运行Android Lollipop时使用它。

使用以下代码获取通知的小图标。

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

您可以看到完整的解决方案Here

我做了同样的事情并且工作正常。