私はfirebase通知を行っています。私は、通知バーで複数の通知を取得することができます。通知バーから通知アイコンを1つ押すと、最後に受信した画面にリダイレクトされます。保留中のアイコンを通知バーから押した場合、何も起こりません。これはこれは私のマニフェストアンドロイドのfirebase通知が正確なページにナビゲートしていません
<activity
android:name=".views.dashboard.DashboardActivity"
android:screenOrientation="portrait"
android:exported="true"
android:theme="@style/AppTheme.NoActionBar"
android:windowSoftInputMode="stateAlwaysHidden" />
である私のコード
private void sendNotification(Map<String, String> data) {
Intent intent = null;
String messageBody = data.get("Message");
String referenceKey = data.get("ReferenceKey");
String referenceValueFromFCM = data.get("ReferenceValue");
if (LocalRepository.getInstance().isAuthenticated()) {
PromotionData promotionData = new PromotionData();
if (!TextUtils.isEmpty(referenceValue) && TextUtils.isDigitsOnly(referenceValue)) {
promotionData.promotionId = Integer.parseInt(referenceValue);
}
intent.putExtra("key", referenceKey);
intent.putExtra("data", promotionData);
intent.putExtra("value", referenceValue);
intent = new Intent(this, DashboardActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_UPDATE_CURRENT);
long[] pattern = {250, 250, 250, 250, 250};
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_notification)
.setContentTitle(getString(R.string.app_name))
.setContentText(messageBody)
.setAutoCancel(true)
.setVibrate(pattern)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(AppUtil.getNotificationId() /* ID of notification */, notificationBuilder.build());
ですこれは、ダッシュボードのナビゲーション活動
String key = getIntent().getStringExtra("key");
String promotionID = getIntent().getStringExtra("value");
PromotionData promotionData = getIntent().getParcelableExtra("data");
if (!TextUtils.isEmpty(promotionID) && (!TextUtils.isEmpty(key))) {
Intent intent = null;
switch (key) {
case Repository.ModuleCode.WHATS_NEWS:
if (hasPromotionId) {
whatsNew();
intent = new Intent(this, WhatsNewDetailActivity.class);
intent.putExtra("data", promotionData);
intent.putExtra("pushID", pushID);
startActivity(intent);
}else{
whatsNew(); // this is fragment
}
break;
case Repository.ModuleCode.PROMOTION:
if (hasPromotionId) {
promotion();
intent = new Intent(this, PromotionDetailActivity.class);
intent.putExtra("data", promotionData);
intent.putExtra("pushID", pushID);
startActivity(intent);
}else{
promotion(); // this is fragment
}
break;
はあなたが私に事前に 感謝をアドバイスしてくださいすることができます。
ここで、Intent for ** key **、** value **、** data **を使用して値を渡すコードはどこですか? –
合格値の更新コードを参照してください これは私の問題です。モバイル通知バーに2つの通知がある場合、通知を受けています。通知アイコンを押した場合、最後に受信した通知にリダイレクトされますナビゲーション画面ではなく、正確な画面。私が別のアイコンを押した場合、何も起こりません。 – AngelJanniee
複数の通知のアイデアを得るためにこのリンクにアクセスし、正確なアクティビティに移動してください。http://stackoverflow.com/questions/12968280/android-multiple-notifications-and-with-multiple-intents –