小编Sek*_*har的帖子

如何知道Android中Firebase通知中的哪个主题名称?

我正在开发一个应用程序,我已经集成了Firebase来处理通知.我只想知道如何获得从后端团队发送给我的主题名称.有三个主题,根据主题,我必须以不同的布局显示消息.我得到这样的头衔和身体:

    if (remoteMessage.getData().size() > 0) {
        //handle the data message here
    try {
        String title = remoteMessage.getNotification().getTitle();
        String body = remoteMessage.getNotification().getBody();
        Log.e("TITLE AND BODY", title + "\n" + body);

    } catch (Exception e) {
        e.printStackTrace();
    }
}
Run Code Online (Sandbox Code Playgroud)

android android-notifications firebase firebase-cloud-messaging

7
推荐指数
1
解决办法
1359
查看次数