FCM数据有效负载通知不会打开上述活动

时间:2017-10-19 12:58:33

标签: android firebase-cloud-messaging android-notifications android-push-notification

我知道这次被问过一百万次,我已经尝试过所看到的一切,但我不能让它发挥作用。我有数据有效负载通知。我在 onMessageReceived()中获取它们,但是当我点击通知栏中的通知时,它不会重定向到启动器。

if (remoteMessage.getData().size() > 0) {
        Log.e(TAG, "Data Payload: " + remoteMessage.getData().toString());
        JSONObject data = json.getJSONObject("data");
        Intent resultIntent = new Intent(getApplicationContext(), LandingActivity.class);

        Bundle bundle = new Bundle();
        bundle.putString("data", data.toString());
        resultIntent.putExtras(bundle);


            // image is present, show notification with image
           //showNotificationMessageWithBigImage(getApplicationContext(), title, message, "13", resultIntent, profilePicThumb); 
           Intent intent = new Intent(this, LandingActivity.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);
            NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle("FCM Message")
                    .setContentText("my message")
                    .setAutoCancel(true)
                    .setSound(defaultSoundUri)
                    .setContentIntent(pendingIntent);

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

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

LandingActivity 是我的应用的启动器活动。

我的manifest.xml

<activity
        android:name=".landing.LandingActivity_"
        android:screenOrientation="portrait"
        android:theme="@style/AppTheme.FullScreen">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

当给出带有可选data_payload的notification_payload时,我获得了LandingActivity中的数据,但是当我只得到data_payload时,单击重写没有发生

数据有效负载结构就像这样

"data" :
{
"notification_type"   : "QUIZ_WINNER", 
"notification_message": "You hav won the quiz ",
"notification_data"   : [
        "user_id"          : id,
        "full_name"        : full_name,
        "profile_pic_thumb": user_profile_picthumb,
        'quiz_id'          : quiz_id,
        'question_id'      : question_id,
        'quiz_title'       : quiz_title,
    ],
"user_id"             : from_id,
'notification_to'     : to_id,
'created_at'          : date,
'updated_at'          : date,

}

我可以收到通知但我无法打开LandingActivity

请帮忙。 提前谢谢。

最终答案

最后我得到了它的工作..我在我的项目中使用了android注释。我需要打开的活动也有注释。因此,而不是这行代码

Intent intent = new Intent(this, LandingActivity.class);

我添加了这个

Intent intent = new Intent(this, LandingActivity_.class);

希望它在某个时候对某人有用。

1 个答案:

答案 0 :(得分:0)

在您设置'Pending Intent'的行中,您应该使用非零的请求代码。它解决了我的问题。我希望它也能解决你的问题。

int requestCode = (int) System.currentTimeMillis();
PendingIntent pendingIntent = PendingIntent.getActivity(this, requestCode /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);