FCM通知onclick无法打开所需的活动

时间:2016-12-23 06:57:43

标签: android android-intent firebase-cloud-messaging

我已经尝试了几乎所有贴在这里的解决方案以及每个标志的组合,但它不起作用。

以下是我遇到问题的用例。

1)当我在申请 FCM 时,通知会打开我想要的活动。 数据将传递到主要活动中的onNewIntent。当应用程序处于前台时,它可以正常工作。

2)在单击通知后处于后台模式(按下主页按钮)时,即使我已将清单文件中的android:launchMode="singleTop"指定为我的主要活动但我不知道该应用程序的新实例这里发生了什么我想在此处打开的所需活动是 RateEventActivity

这里发生的奇怪事情是,即使应用程序处于后台模式,NotificationActivityProfileActivity也能正常运行,但 RateEventActivity 正在产生所有问题我上面说过。大多数应用程序代码是由我在RateEevent模块上工作的其他人编写的,所以我不知道我在这里缺少什么?

当我在 mainActivty 方案中点击来自后台模式的通知时,意图在某处丢失(在创建时未传递到RateEventActivity)。

我也尝试将唯一ID传递给我的未决意图,但没有运气。我花了很多时间和精力来解决这个问题,但每次都失败了

这是我的FCM代码

  private void createNotification(RemoteMessage remoteMessage) {
    RemoteMessage.Notification notification = remoteMessage.getNotification();
    NotificationManager mNotificationManager = (NotificationManager)
            this.getSystemService(Context.NOTIFICATION_SERVICE);

    Log.v("Notification Title", remoteMessage.getNotification().getTitle());

    Intent intent = new Intent(this, MainActivity.class);
    //intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
    if (remoteMessage.getData().containsKey("notificationUser")) {
        intent.putExtra("notificationUser", remoteMessage.getData().get("notificationUser"));
    } else if (remoteMessage.getData().containsKey("notificationId")) {
        intent.putExtra("notificationId", remoteMessage.getData().get("notificationId"));
    } else if (remoteMessage.getData().containsKey("event")) {
        if (remoteMessage.getNotification().getTitle().equalsIgnoreCase("Event Feedback")) {


            Log.v("Notification Event", remoteMessage.getData().get("event"));
            intent.putExtra("eventId", remoteMessage.getData().get("event"));
        }


    }


    //PendingIntent.FLAG_UPDATE_CURRENT
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0 , intent,
            PendingIntent.FLAG_UPDATE_CURRENT);

    Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
                    .setSmallIcon(R.drawable.ic_notification)
                    .setLargeIcon(largeIcon)
                    .setContentTitle(notification.getTitle())
                    .setStyle(new NotificationCompat.BigTextStyle()
                            .bigText(notification.getBody()))
                    .setContentText(notification.getBody())
                    .setAutoCancel(true);

    mBuilder.setContentIntent(contentIntent);
    mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}

主要活动代码onCreate方法

   if (getIntent().hasExtra("notificationId")) {
        Intent intent = new Intent(this, NotificationActivity.class);
        intent.putExtra("notificationId", getIntent().getStringExtra("notificationId"));
        startActivity(intent);
    } else if (getIntent().hasExtra("user")) {
        Intent intent = new Intent(this, ProfileActivity.class);
        intent.putExtra("userId", getIntent().getStringExtra("user"));
        startActivity(intent);
    } else if (getIntent().hasExtra("eventId")) {
        Intent intent = new Intent(this, RateEventActivity.class);
        intent.putExtra("eventId", getIntent().getStringExtra("eventId"));
        startActivity(intent);
    }

我的清单文件

 <activity
        android:name=".activities.MainActivity"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:launchMode="singleTop"
        android:screenOrientation="portrait"
        android:theme="@style/HomeTheme" />

<activity
        android:name=".activities.ProfileActivity"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:label="Profile"
        android:screenOrientation="portrait" />

 <activity
        android:name=".activities.NotificationActivity"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:label="Notifications"
        android:screenOrientation="portrait" />

<activity
        android:name=".activities.RateEventActivity"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:label="Rate Users"
        android:screenOrientation="portrait"
       />

2 个答案:

答案 0 :(得分:4)

如果您要打开应用并执行特定操作[在后台运行时],请在通知有效内容中设置click_action,并将其映射到您要启动的活动中的意图过滤器。例如,将click_action设置为OPEN_ACTIVITY_1以触发如下所示的意图过滤器:

正如react-native-fcm docs中所建议的那样,请求后端以这样的形式发送json数据,

 {

    "to":"some_device_token",

    "content_available": true, 
    "notification": {
    "title": "hello",
    "body": "yo",
    "click_action": "OPEN_ACTIVITY_1" // for intent filter in your activity
    },

"data": {
"extra":"juice"
}
}

并在您的mainfest文件中为您的活动添加intent-filter,如下所示

<intent-filter>
  <action android:name="OPEN_ACTIVITY_1" />
  <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

当您点击通知时,它会打开应用并直接转到您在click_action中定义的活动,在本例中为&#34; OPEN_ACTIVTY_1&#34;。在该活动中,您可以通过以下方式获取数据:

Bundle b = getIntent().getExtras();// add these lines of code to get data from notification
String someData = b.getString("someData");

查看以下链接以获取更多帮助:

Firebase FCM notifications click_action payload

Firebase onMessageReceived not called when app in background

Firebase console: How to specify click_action for notifications

答案 1 :(得分:0)

我很久以前就遇到过这个问题。让我查看我的项目代码。

啊,它在这里。

尝试设置标志

Intent intent = new Intent(this,    MainActivity.class));       
// set intent so it does not start a new activity
         intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
         Intent.FLAG_ACTIVITY_SINGLE_TOP);

并更改您的PendingIntent,如下所示

PendingIntent contentIntent = PendingIntent.getActivity(this, ,
                intent, 0);

同时删除

android:launchMode="singleTop"
来自Manifest文件的MainActivity

尝试这个,让它看起来有效。