149

昨日、Google は Google I/O で、新しい Firebase に基づく新しい通知システムを発表しました。この新しい FCM ( Firebase Cloud Messaging ) を Github のサンプルで試してみました。

特定のドローアブルを宣言したにもかかわらず、通知のアイコンは常に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());
    }

}
4

10 に答える 10

295

残念ながら、これは SDK 9.0.0-9.6.1 の Firebase Notifications の制限でした。アプリがバックグラウンドにある場合、ランチャー アイコンは、コンソールから送信されたメッセージのマニフェストから使用されます (必要な 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 からメッセージを送信する場合は、いつでもアイコンをカスタマイズすることもできます。

于 2016-05-19T19:34:37.787 に答える
39

サーバー実装を使用してクライアントにメッセージを送信し、通知タイプのメッセージではなくデータタイプのメッセージを使用します。

onMessageReceivedこれにより、アプリがバックグラウンドにあるかフォアグラウンドにあるかに関係なくコールバックを取得でき、カスタム通知を生成できます

于 2016-05-27T18:19:15.570 に答える
6

私のソリューションは ATom のソリューションに似ていますが、より簡単に実装できます。FirebaseMessagingService を完全にシャドウするクラスを作成する必要はありません。Intent を受け取るメソッド (少なくともバージョン 9.6.1 では公開されています) をオーバーライドして、エクストラから表示する情報を取得できます。「ハッキーな」部分は、メソッド名が実際には難読化されており、Firebase SDK を新しいバージョンに更新するたびに変更されることですが、Android Studio で FirebaseMessagingService を調べ、取得するパブリック メソッドを探すことですばやく調べることができます。唯一のパラメーターとしてのインテント。バージョン 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());
    }
}
于 2016-10-17T15:26:37.353 に答える
4

targetSdkVersion を 19 に設定するだけです。通知アイコンに色が付きます。次に、Firebase がこの問題を修正するのを待ちます。

于 2016-06-20T17:55:28.297 に答える
0

私の問題は単純ですが気づきにくいので、これに答えを追加すると思いました。特に、タグをcom.google.firebase.messaging.default_notification_icon使用してその値を指定する my を作成するときに、既存のメタデータ要素をコピー/貼り付けていました。android:valueこれは通知アイコンでは機能しません。一度変更すると、android:resourceすべてが期待どおりに機能しました。

于 2019-06-13T19:40:12.037 に答える