1. ホーム
  2. android

[解決済み] 新Firebase Cloud Messagingシステムによる通知アイコンについて

2022-05-02 21:03:35

質問

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

通知のアイコンは常に ic_launcher 特定のdrawableを宣言しているにもかかわらず

なぜ? 以下は、このメッセージを処理するための公式コードです。

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());
    }

}

解決方法は?

残念ながら、これは 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からメッセージを送信する場合は、常にアイコンをカスタマイズすることができます。