带有新Firebase Cloud Messaging系统的通知图标


132

昨天,Google在Google I / O上展示了基于新Firebase的新通知系统。我使用Github上的示例尝试了这个新的FCM(Firebase Cloud Messaging)。

尽管我已声明特定的可绘制对象,但通知的图标始终是ic_launcher

为什么呢 下面是用于处理邮件的官方代码

public class AppFirebaseMessagingService extends FirebaseMessagingService {

    /**
     * Called when message is received.
     *
     * @param remoteMessage Object representing the message received from Firebase Cloud Messaging.
     */
    // [START receive_message]
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        // If the application is in the foreground handle both data and notification messages here.
        // Also if you intend on generating your own notifications as a result of a received FCM
        // message, here is where that should be initiated. See sendNotification method below.
        sendNotification(remoteMessage);
    }
    // [END receive_message]

    /**
     * Create and show a simple notification containing the received FCM message.
     *
     * @param remoteMessage FCM RemoteMessage received.
     */
    private void sendNotification(RemoteMessage remoteMessage) {

        Intent intent = new Intent(this, MainActivity.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);

// this is a my insertion looking for a solution
        int icon = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ? R.drawable.myicon: R.mipmap.myicon;
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(icon)
                .setContentTitle(remoteMessage.getFrom())
                .setContentText(remoteMessage.getNotification().getBody())
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);

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

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

}

firebase与您如何创建通知无关,请提供您所看到的图像
tyczj

1
精确。此代码直接来自Firebase,并且sendNotification()方法对于任何通知都是完全相同的。这段代码适用于GCM,但适用于FCM no。使用新的Web界面发送消息,它始终保持ic_launcher
marco

您设置了小图标,但没有设置大图标,除非您要发送带有推送标签的通知标签,而推送标签中的通知标签与FCM无关
tyczj 2016年

当应用程序位于前台时,它是否显示您的自定义通知图标?这对我行得通。但是,当应用程序在后台运行时,它必须使用某种默认的FCM处理程序,因为所有通知设置都将被忽略(无法自定义图标,声音,灯光,振动等)。
Shinypenguin's

Answers:


267

不幸的是,这是SDK 9.0.0-9.6.1中Firebase通知的限制。当应用程序在后台运行时,清单中的启动器图标(带有必要的Android色彩)用于从控制台发送的消息。

但是,使用SDK 9.8.0时,您可以覆盖默认值!在您的AndroidManifest.xml中,您可以设置以下字段来自定义图标和颜色:

<meta-data
        android:name="com.google.firebase.messaging.default_notification_icon"
        android:resource="@drawable/notification_icon" />
<meta-data android:name="com.google.firebase.messaging.default_notification_color"
        android:resource="@color/google_blue" />

请注意,如果应用程序位于前台(或发送了数据消息),则可以完全使用自己的逻辑来自定义显示。如果从HTTP / XMPP API发送消息,您也可以始终自定义图标。


1
@Ian Barber:Google是否有计划在不久的将来改变这种行为?
skylve

1
团队已意识到该问题,并正在努力进行修复。
亚瑟·汤普森

1
这事有进一步更新吗?以为我会问,因为在某些情况下,Google工程师只是忘了推补丁了。
CQM

7
嗯,我知道它可以与9.8.0一起使用。为了帮助他人,请记住您的状态栏图标必须符合要求:developer.android.com/guide/practices/ui_guidelines/…。我的并没有,因此firebase只是默认使用标准的whitesquare而不使用清单中指定的图标。
zaifrun '16

3
如果您碰巧尝试此操作,并且发现该图标小于其他通知,请确保使用的是可绘制的矢量(而不是png)。那为我解决了。
2016年

35

使用服务器实现将消息发送到客户端,并使用消息的数据类型而不是消息的通知类型。

onMessageReceived无论您的应用是后台还是前台,这都将帮助您回调,然后可以生成自定义通知,然后


2
这也是Firebase文档中建议的解决方案,如果您依靠数据推送而不是通知,则可以按照您喜欢的任何方式显示通知。
拉斯

1
是的,同意。这应该标记为正确答案。或我的回答如下:)
Developine

3
不,对于需要与希望收到通知的其他客户端/旧版本保持兼容性的人员而言,这是不可行的。
加博尔

我们已经在生产中的应用程序已经期望推送通知的类型,并且我们已经扩展了该(复杂)后端组件以为新客户端添加数据。但是我们无法删除对应用程序旧版本的支持。
加博尔

哦,我同意。那是另一个问题。我建议在集成之前仔细阅读文档。还要在投入生产之前进行彻底测试。如果该应用在发布前经过了良好的测试,则可以避免该问题。无论如何,您有一些东西要学习。
geekoraul

9

atm他们正在解决这个问题https://github.com/firebase/quickstart-android/issues/4

当您从Firebase控制台发送通知时,默认情况下会使用您的应用程序图标,而Android系统在通知栏中时会将该图标变为白色。

如果您对该结果不满意,则应实现FirebaseMessagingService并在收到消息时手动创建通知。我们正在努力改善这一点,但目前这是唯一的方法。

编辑:使用SDK 9.8.0添加到AndroidManifest.xml

<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@drawable/my_favorite_pic"/>

如何在棉花糖中显示自定义的图标通知托盘
Harsha,2016年

6

我的解决方案类似于ATom的解决方案,但更易于实现。您不需要创建一个完全遮盖FirebaseMessagingService的类,只需覆盖接收Intent的方法(至少在9.6.1版中是公共的),然后从其他内容中获取要显示的信息。“ hacky”部分是方法名称确实被混淆,并且每次将Firebase sdk更新到新版本时都会更改,但是您可以通过使用Android Studio检查FirebaseMessagingService并查找需要一个Intent作为唯一参数。在版本9.6.1中,它称为zzm。我的服务如下所示:

public class MyNotificationService extends FirebaseMessagingService {

    public void onMessageReceived(RemoteMessage remoteMessage) {
        // do nothing
    }

    @Override
    public void zzm(Intent intent) {
        Intent launchIntent = new Intent(this, SplashScreenActivity.class);
        launchIntent.setAction(Intent.ACTION_MAIN);
        launchIntent.addCategory(Intent.CATEGORY_LAUNCHER);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* R    equest code */, launchIntent,
                PendingIntent.FLAG_ONE_SHOT);
        Bitmap rawBitmap = BitmapFactory.decodeResource(getResources(),
                R.mipmap.ic_launcher);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.drawable.ic_notification)
                .setLargeIcon(rawBitmap)
                .setContentTitle(intent.getStringExtra("gcm.notification.title"))
                .setContentText(intent.getStringExtra("gcm.notification.body"))
                .setAutoCancel(true)
                .setContentIntent(pendingIntent);

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

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

gcm.notification.title的密钥名称对所有版本都是100%安全的吗?
pedroooo

3

只需将targetSdkVersion设置为19。通知图标将变为彩色。然后,等待Firebase解决此问题。


7
:D哇,那副作用列表在哪里?
Eugen Pechanec '16

@EugenPechanec是的,需要权衡的是您可能无法使用某些在20+上可用的API
benleung '16

3

还有一种丑陋但可行的方法。反编译FirebaseMessagingService.class并修改其行为。然后只需将类放到应用程序中的正确包中,然后dex使用它而不是消息传递库本身中的类即可。这很容易并且可以工作。

有方法:

private void zzo(Intent intent) {
    Bundle bundle = intent.getExtras();
    bundle.remove("android.support.content.wakelockid");
    if (zza.zzac(bundle)) {  // true if msg is notification sent from FirebaseConsole
        if (!zza.zzdc((Context)this)) { // true if app is on foreground
            zza.zzer((Context)this).zzas(bundle); // create notification
            return;
        }
        // parse notification data to allow use it in onMessageReceived whe app is on foreground
        if (FirebaseMessagingService.zzav(bundle)) {
            zzb.zzo((Context)this, intent);
        }
    }
    this.onMessageReceived(new RemoteMessage(bundle));
}

此代码来自9.4.0版,由于混淆,方法在不同版本中的名称将不同。


3

如果您的应用程序在后台,则通知图标将设置为onMessage Receive方法,但是如果您的应用程序在前台,则通知图标将为您在清单中定义的图标。

在此处输入图片说明


2

我正在通过FCM控制台并通过HTTP / JSON触发通知,结果相同。

我可以处理标题,完整消息,但图标始终是默认的白色圆圈:

通知屏幕截图

而不是代码中的我的自定义图标(setSmallIcon或setSmallIcon)或该应用中的默认图标:

 Intent intent = new Intent(this, MainActivity.class);
    // use System.currentTimeMillis() to have a unique ID for the pending intent
    PendingIntent pIntent = PendingIntent.getActivity(this, (int) System.currentTimeMillis(), intent, 0);

    if (Build.VERSION.SDK_INT < 16) {
        Notification n  = new Notification.Builder(this)
                .setContentTitle(messageTitle)
                .setContentText(messageBody)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentIntent(pIntent)
                .setAutoCancel(true).getNotification();
        NotificationManager notificationManager =
                (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        //notificationManager.notify(0, n);
        notificationManager.notify(id, n);
    } else {
        Bitmap bm = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);

        Notification n  = new Notification.Builder(this)
                .setContentTitle(messageTitle)
                .setContentText(messageBody)
                .setSmallIcon(R.drawable.ic_stat_ic_notification)
                .setLargeIcon(bm)
                .setContentIntent(pIntent)
                .setAutoCancel(true).build();

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        //notificationManager.notify(0, n);
        notificationManager.notify(id, n);
    }

1
得到它了!我的<服务>标记出来在AndroidManifest.xml <Application>标签的在这里,我热了答案stackoverflow.com/a/37352142/6366150
贡萨洛

仅适用于运行前台应用程序...在后台仍具有相同的先前行为
Gonzalo

当前景中的应用程序的客户通知图标运行良好,但在应用程序背景中出现白色方形图标时,请帮助我
Harsha

1

写这个

<meta-data 
         android:name="com.google.firebase.messaging.default_notification_icon"
         android:resource="@drawable/ic_notification" />

马上下来 <application.....>

在此处输入图片说明


0

我以为我会对此问题加一个答案,因为我的问题很简单但很难注意到。特别是在创建my时com.google.firebase.messaging.default_notification_icon,我已经复制/粘贴了一个现有的meta-data元素,该元素使用android:value标签来指定其值。对于通知图标,这将不起作用,并且一旦将其更改android:resource为按预期方式工作的所有内容。


这同样适用于default_notification_color元,它需要一个android:resource-设置为android:value不工作
flochtililoch
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.