2016-12-06 7 views
1

私は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; 

はあなたが私に事前に 感謝をアドバイスしてくださいすることができます。

+0

ここで、Intent for ** key **、** value **、** data **を使用して値を渡すコードはどこですか? –

+0

合格値の更新コードを参照してください これは私の問題です。モバイル通知バーに2つの通知がある場合、通知を受けています。通知アイコンを押した場合、最後に受信した通知にリダイレクトされますナビゲーション画面ではなく、正確な画面。私が別のアイコンを押した場合、何も起こりません。 – AngelJanniee

+0

複数の通知のアイデアを得るためにこのリンクにアクセスし、正確なアクティビティに移動してください。http://stackoverflow.com/questions/12968280/android-multiple-notifications-and-with-multiple-intents –

答えて

1

私は私の質問の答えを見つける必要があります。 は私が意図して値を渡すいた場合、その後、複数の通知のためにその作業を

intent.setData 

を使用する必要があります。

これは、正確な画面をナビゲートするための更新コードです。

Intent intent = null; 
    String messageBody = data.get("Message"); 
    String referenceKey = data.get("ReferenceKey"); 
    String referenceValue = data.get("ReferenceValue"); 
    String pushID = data.get("PushId"); 


    PromotionData promotionData = new PromotionData();//item id 
    if (!TextUtils.isEmpty(referenceKey)) { 
     if (!TextUtils.isEmpty(referenceValue) && TextUtils.isDigitsOnly(referenceValue)) { 
      promotionData.promotionId = Integer.parseInt(referenceValue); 

     } 
    } 

    if (LocalRepository.getInstance().isAuthenticated()) { 
     intent = new Intent(this, DashboardActivity.class); 
     intent.setData(new Uri.Builder().scheme(referenceKey).build()); 
     intent.putExtra("pushID", pushID); 
     intent.putExtra("data", promotionData); 
     intent.putExtra("key", referenceKey); 
     intent.putExtra("value", referenceValue); 
    } else { 
     intent = new Intent(this, LoginActivity.class); 
     intent.setData(new Uri.Builder().scheme(referenceKey).build()); 
     intent.putExtra("pushID", pushID); 
     intent.putExtra("data", promotionData); 
     intent.putExtra("key", referenceKey); 
     intent.putExtra("value", referenceValue); 
    } 

    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent, 
      PendingIntent.FLAG_ONE_SHOT); 

    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()); 
} 

正確なページナビゲーションにこの行を使用してください。これは火災のバグです。 intent.setData(新しいUri.Builder()。scheme(referenceKey).build()); referenceKeyの代わりにStringを渡すことができます。

1

Activityに値を渡す方法を理解するために、この回答をNotificationを使用して使用することができます。 Here's a link which might be helpful

は、あなただけがこのようなIntentで値を渡す必要があり、

Intent intent = new Intent(this, yourActivityClass.class); 
intent.putExtra("msg",messageBody); 
関連する問題