当应用程序不在前台时,特定活动不会从通知单击打开(应用程序是最近的,没有被杀死!)
Posted
技术标签:
【中文标题】当应用程序不在前台时,特定活动不会从通知单击打开(应用程序是最近的,没有被杀死!)【英文标题】:Specific activity not opening from notification click when the app is not in foreground(app is in recents, not killed!) 【发布时间】:2019-11-20 05:17:46 【问题描述】:我想在点击通知时打开一个特定的活动。但是当应用程序在后台时,它不会打开。我什至没有传递额外内容(即数据)。我只想打开活动并根据登录的用户,我做一些任务。我什至尝试在单击通知时打开我的默认启动器活动,然后从那里将用户发送到通知活动。这是我的默认启动器活动的代码: PS:我是从 Firebase 控制台发送消息,但它只有标题和正文。
(这是我在完成网络任务后调用的函数:)
if (list.size()!=0)
for (int i=0;i<list.size();i++)
Users u=list.get(i);
//Toast.makeText(LoginActivity.this, "Logging in...", Toast.LENGTH_SHORT).show();
final Intent intent;
Bundle b=new Bundle();
// This is the solution i found to check whether the extras has the package name or not! But it doesnt seem to work.
if (Splashscreen.this.getIntent().getExtras() != null)
if (Splashscreen.this.getIntent().hasExtra("pushnotification") || Splashscreen.this.getIntent().getExtras().containsKey("com.tracecost"))
System.out.println("From notification----------->");
intent=new Intent(Splashscreen.this,NotificationReceivedActivity.class);
b.putString("pushnotification","yes");
else
intent=new Intent(Splashscreen.this, ProjectSelection.class);
else
intent=new Intent(Splashscreen.this, ProjectSelection.class);
b.putSerializable("user",u);
b.putSerializable("projectlist",plist);
intent.putExtras(b);
//logginDialog.dismiss();
Handler handler=new Handler();
handler.postDelayed(new Runnable()
@Override
public void run()
startActivity(intent);
finish();
,3500);
```
【问题讨论】:
你运行代码的安卓版本是什么?Splashscreen.this.getIntent().hasExtra
是错误的。 b.getIntent().hasExtra("value")
另外,如果您的应用程序已经打开,您希望它如何通过启动画面?
@sanjeev 我在通知构建期间传递了一个额外的,所以它再次打开了启动画面。那里没有问题。唯一的问题是,如果应用程序不在前台,则通知活动不会打开!
@rm-rfstar 我在 android 9 上运行了该应用程序,但它可以运行到 API 24
【参考方案1】:
当应用处于前台或后台时,您可以从 Firebase 通知重定向,只要您发送 data
。
我将为您提供一个示例,说明如何根据从通知中收到的密钥在活动之间进行重定向,firebase 会神奇地处理其余部分。
P.S:如果你想处理已经在后台打开的活动,使用
taskAffinity
来玩。
通过FirebaseMessagingService
处理Firebase数据:
@Override
public void onMessageReceived(RemoteMessage remoteMessage)
super.onMessageReceived(remoteMessage);
System.out.println("MESSAGE BODY :" + remoteMessage.toString());
if (remoteMessage.getData().size() > 0)
//getting the title and the body
String redirect;
String title = remoteMessage.getData().get("message_title");
String body = remoteMessage.getData().get("message_body");
redirect = remoteMessage.getData().get("redirect");
String event_id = remoteMessage.getData().get("event_id");
System.out.println("PUSH MESSAGE = " + remoteMessage.toString());
JSONObject jsonData = new JSONObject(remoteMessage.getData());
System.out.println("RESPONSE :" + jsonData.toString());
if (redirect != null)
sendNotification(title, body, event_id, redirect);
else
redirect = "";
sendNotification(title, body, event_id, redirect);
private void sendNotification(String title, String body, String event_id, String redirect)
Intent backIntent = new Intent();
PendingIntent pendingIntent;
if (redirect.contentEquals("CHAT"))
backIntent = new Intent(MyFirebaseMessagingService.this, ChatScreen.class);
backIntent.putExtra("item_id", event_id);
if (redirect.contentEquals("EVENT") || redirect.contentEquals("INVITATION"))
backIntent = new Intent(MyFirebaseMessagingService.this, Event_Summary.class);
backIntent.putExtra("event_id", event_id);
backIntent.putExtra("MODE", "FIRE_NOTIFICATION");
backIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addNextIntentWithParentStack(backIntent);
pendingIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
【讨论】:
【参考方案2】:这仅在应用程序处于前台时有效。当应用程序在后台时,它只考虑来自有效负载的通知数据并忽略数据部分。这导致无法控制应用程序,因为通知类型的消息将由系统单独处理。唯一的选择是使用您自己的外部服务器或从其他客户端发送。
【讨论】:
【参考方案3】:Firebase 控制台仅发送通知消息(更多信息在这里Firebase),但您可以使用自己的服务器或 Firebase API 发送数据消息。
数据消息适用于前台和后台应用程序状态。
触发推送通知的示例 curl 如下所示:
卷曲-X POST \ https://fcm.googleapis.com/fcm/send\ -H '授权:key=YOUR_API_KEY' \ -H '内容类型:应用程序/json' \ -H '缓存控制:无缓存' \ -d' “数据”: "标题":"标题", "message":"通知内容", “custom_key”:“custom_value” , “registration_ids”:[“DEVICE_PUSH_TOKEN”] '
您也可以传递您的自定义键值对并在 onMessageReceived 方法中获取它们。
注意:在这种方法中,您必须创建在系统托盘中可见的通知。示例代码如下所示:
// Create an explicit intent for an Activity in your app
Intent intent = new Intent(this, AlertDetails.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID)
.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("My notification")
.setContentText("Hello World!")
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
// Set the intent that will fire when the user taps the notification
.setContentIntent(pendingIntent)
.setAutoCancel(true);
您可以在official documentation 中找到更多信息
希望这会有所帮助!
【讨论】:
以上是关于当应用程序不在前台时,特定活动不会从通知单击打开(应用程序是最近的,没有被杀死!)的主要内容,如果未能解决你的问题,请参考以下文章