android – startActivity从BroadcastReceiver调用时不起作用

前端之家收集整理的这篇文章主要介绍了android – startActivity从BroadcastReceiver调用时不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个通知,当我选择时,它使用PendingIntent向BroadcastReceiver发送广播.在onReceive中我启动了一个新的Activity.

但是,如果我从最近打开的应用程序中移除我的应用程序(或通知在绘图中长时间停留),则会出现以下情况:

当我在抽屉里有多个通知时,第一个通知很好.在点击第二个之后,我的onCreate()和我的onResume()被调用,就好像startActivity()根本不起作用.如果我添加标志Intent.FLAG_ACTIVITY_SINGLE_TOP,则调用onNewIntent.

notificationIntent = new Intent();
notificationIntent.setAction(AppConstants.ACTION_ACTIVITY);
notificationIntent.putExtra("key",value);
int requestID = (int) System.currentTimeMillis();

mBuilder.setContentIntent(PendingIntent
                    .getBroadcast(context,requestID,notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT));

的onReceive

Intent intent = new Intent(context,Activity.class);
  intent.putExtra("key",value);
  //IF I ADD FLAG_ACTIVITY_SINGLE_TOP IT WORKS
  intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  context.startActivity(intent);

解决方法

尝试使用标志如下的意图.
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_MULTIPLE_TASK);

对于Pending intent,使用PendingIntent.FLAG_UPDATE_CURRENT

原文链接:https://www.f2er.com/android/314141.html

猜你在找的Android相关文章