Как установить Firebase уведомления ChannelID в Android O? - PullRequest
0 голосов
/ 09 июня 2018

Для API уровня 26 мы должны установить идентификатор канала в качестве ссылки.Я узнал, как это сделать без идентификатора канала, и ниже приведен мой код настройки обмена сообщениями в Firebase.Но теперь для нового уровня Android API 26

NotificationCompat.Builder(this);

Это не работает, и я должен добавить ссылку на channelID как

NotificationCompat.Builder(this, channelID);

Но я не знаю, как это сделатьЭто.Можете ли вы помочь мне понять, как создать идентификатор канала для облачных сообщений Firebase?

AndroidManifest.xml

    <service android:name=".MyFirebaseInstanceIdService">
        <intent-filter>
            <action android:name="com.google.firebase.INSTANCE_ID_EVENT"></action>
        </intent-filter>
    </service>

    <service android:name=".MyFirebaseMessagingService">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT"></action>
        </intent-filter>
    </service>

MyFirebaseInstanceIdService Java Class:

import android.util.Log;
import com.google.firebase.iid.FirebaseInstanceId;
import com.google.firebase.iid.FirebaseInstanceIdService;

public class MyFirebaseInstanceIdService extends FirebaseInstanceIdService {

    private static final String REG_TOKEN = "REG_TOKEN";

    @Override
    public void onTokenRefresh() {
        String recent_token = FirebaseInstanceId.getInstance().getToken();
        Log.d(REG_TOKEN, recent_token);
    }
}

MyFirebaseMessagingService Java Class

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;

import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {

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

        // Here I will set up a channel ID as "CH_ID_1" but I do not know how to do this.
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "CH_ID_1");
        //****************************************************

        notificationBuilder.setContentTitle("FCM NOTIFICATION");
        notificationBuilder.setContentText(remoteMessage.getNotification().getBody());
        notificationBuilder.setAutoCancel(true);
        notificationBuilder.setSmallIcon(R.mipmap.ic_launcher);
        notificationBuilder.setContentIntent(pendingIntent);
        NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
        notificationManager.notify(0, notificationBuilder.build());

    }
}

Gradle - Зависимости

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.android.support:design:26.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.firebase:firebase-core:16.0.0'
    implementation 'com.google.firebase:firebase-messaging:17.0.0'
}
apply plugin: 'com.google.gms.google-services'

1 Ответ

0 голосов
/ 10 июня 2018

То, что я делал в приложении раньше, - это инициализация каналов уведомлений, как только приложение запускается.Поэтому я добавил функцию init в свой класс Application, например:

    @TargetApi(Build.VERSION_CODES.O)
    private void initNotificationChannels() {
        NotificationChannel publicChannel = new NotificationChannel(
                Constants.NOTIFICATION_CHANNEL_PUBLIC,
                Constants.NOTIFICATION_CHANNEL_PUBLIC,
                NotificationManager.IMPORTANCE_DEFAULT);
        publicChannel.setDescription(Constants.NOTIFICATION_CHANNEL_PUBLIC);

        NotificationChannel topicChannel = new NotificationChannel(
                Constants.NOTIFICATION_CHANNEL_TOPIC,
                Constants.NOTIFICATION_CHANNEL_TOPIC,
                NotificationManager.IMPORTANCE_DEFAULT);
        topicChannel.setDescription(Constants.NOTIFICATION_CHANNEL_TOPIC);

        NotificationChannel privateChannel = new NotificationChannel(
                Constants.NOTIFICATION_CHANNEL_PRIVATE,
                Constants.NOTIFICATION_CHANNEL_PRIVATE,
                NotificationManager.IMPORTANCE_HIGH);
        privateChannel.setDescription(Constants.NOTIFICATION_CHANNEL_PRIVATE);
        privateChannel.canShowBadge();

        List<NotificationChannel> notificationChannels = new ArrayList<>();
        notificationChannels.add(publicChannel);
        notificationChannels.add(topicChannel);
        notificationChannels.add(privateChannel);

        NotificationManager mNotificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        if (mNotificationManager != null) {
            mNotificationManager.createNotificationChannels(notificationChannels);
        }
    }

Затем в моем FirebaseMessagingService я создал функцию, которая получает channelId при создании уведомлений:

    private String getChannelId(String source) {
        if (!TextUtils.isEmpty(source)) {
            if (source.contains(Constants.TOPIC_PREFIX)) {
                return (TextUtils.equals((TOPIC_PREFIX + Constants.NOTIFICATION_CHANNEL_PUBLIC), source)) ?
                        Constants.NOTIFICATION_CHANNEL_PUBLIC : Constants.NOTIFICATION_CHANNEL_TOPIC;
            } else {
                return Constants.NOTIFICATION_CHANNEL_PRIVATE;
            }
        } else {
            return Constants.NOTIFICATION_CHANNEL_PUBLIC;
        }
    }

Это обслуживает три типа уведомлений, которые нужны нашему приложению - Public, Topic и Private.Вы можете указать нужные каналы самостоятельно.

...