当应用程序处于后台时,无法从意图中获取Extras



当单击通知时,我尝试在MainActivity中执行一个函数。这个函数需要一个数据,我把它放在了intent extra中。

问题是,当我在应用程序运行时单击通知时,功能会被执行,但当我在后台应用程序时单击通知,功能不会被执行。我已经检查过了,这是因为当应用程序处于后台时,我在intent extra中放入的数据是空的。

我该如何解决这个问题?谢谢

这是我收到的回复:

{
"to":"blablabla",
"notification": {
"body":"Sentiment Negative from customer",
"title":"Mokita"
},
"data" : {
"room_id":1516333
}
}

这是我的通知代码:

public void onMessageReceived(RemoteMessage message) {
super.onMessageReceived(message);
Log.d("msg", "onMessageReceived: " + message.getData().get("room_id"));
String roomId = message.getData().get("room_id");
Intent intent = new Intent(this, HomePageTabActivity.class);
intent.putExtra("fromNotification", true);
intent.putExtra("roomId", roomId);
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
String channelId = "Default";
NotificationCompat.Builder builder = new  NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle(message.getNotification().getTitle())
.setContentText(message.getNotification().getBody())
.setAutoCancel(true)
.setContentIntent(pendingIntent);
NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(channelId, "Default channel", NotificationManager.IMPORTANCE_DEFAULT);
manager.createNotificationChannel(channel);
}
manager.notify(0, builder.build());
}

}

这就是函数以及我在MainActivity:中执行它的方式

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_drawer);
onNewIntent(getIntent());
}
@Override
public void onNewIntent(Intent intent){
Bundle extras = intent.getExtras();
if(extras != null){
if(extras.containsKey("fromNotification") || extras.containsKey("roomId")) {
openChatRoom(Long.valueOf(extras.getString("roomId")));
}else if(extras.containsKey("fromNotification") && extras.containsKey("roomId")){
openChatRoom(Long.valueOf(extras.getString("roomId")));
}else{
Log.e("EXTRAS room",""+extras.getString("roomId"));
Log.e("EXTRAS STATUS",""+extras.getBoolean("fromNotification"));
}
}else{
Toast.makeText(HomePageTabActivity.this,"Empty",Toast.LENGTH_SHORT).show();
}
}

public void openChatRoom(long roomId){
Log.d("LONG ROOM",""+roomId);
QiscusRxExecutor.execute(QiscusApi.getInstance().getChatRoom(roomId),
new QiscusRxExecutor.Listener<QiscusChatRoom>() {
@Override
public void onSuccess(QiscusChatRoom qiscusChatRoom) {
startActivity(GroupRoomActivity.
generateIntent(HomePageTabActivity.this, qiscusChatRoom));
}
@Override
public void onError(Throwable throwable) {
throwable.printStackTrace();
}
});
}

Firebase有两种类型的消息:通知消息和数据消息。如果您希望FCM SDK自己处理消息,则需要使用notification。当应用程序处于非活动状态时,FCM将使用notification主体来显示消息。在这种状态下,onMessageReceived也不会被触发。如果你想让应用程序处理这些消息,你需要使用data。您可能需要更改的推送通知负载

{
"message":{
"token":"xxxxx:...",
"notification":{
"title":"Your title",
"body":"Your message"
}
}
}

{
"message":{
"token":"xxxxx:...",
"data":{
"title":"Your title",
"body":"Your message",
"fromNotification":"true",
"roomId":"123"
}
}
}

您还需要相应地处理onMessageReceived(RemoteMessage remoteMessage)中的消息。您可以在通知和数据消息中阅读有关通知行为的信息。

这些有效载荷将被传递到您在挂起意图中指定的活动。因此,当用户点击您的通知时,HomePageTabActivity就会启动,您可以通过在活动生命周期中的任何位置调用getIntent()来获得意图。但因为如果HomePageTabActivity已经启动,则您正在活动上设置singleTop标志,因此Android将不会再次启动它,而是将新的Intent(在通知中提供(传递给onNewIntent()。你可以在那里消费它,甚至可以调用getIntent()从那里获得新的值。

在Android应用程序中接收消息。同时具有通知和数据负载的消息,包括后台和前台。在这种情况下,数据有效载荷被传递给启动器活动的附加目的。如果你想在其他活动中获得它,你必须在数据负载上定义click_action。因此,在你的启动器活动中获得额外的意图。

相关内容

  • 没有找到相关文章

最新更新