これは以前に何百万回も尋ねられたことを知っています。私が見たものはすべて試しましたが、うまくいきません。データ ペイロードの通知があります。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);
いつか誰かの役に立てば幸いです。