我有一个显示列表的MainActivity。但是当用户点击状态栏中的通知时,我想在MainActivity上显示一个对话框。 是否可以通过通知查询活动是否已启动?
我还尝试在意图中添加额外信息,让活动知道它应弹出该对话框。但是这个包总是空的。将此添加到onResume()没有意义,因为Activity已经可见了。
long id = intent.getLongExtra("id", 0);
String title = intent.getStringExtra("msg");
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context);
mBuilder.setSmallIcon(R.drawable.ic_action_ic_action_edit);
mBuilder.setContentTitle("EasyReminder");
mBuilder.setContentText(title);
Intent resultIntent = new Intent(context, MainActivity.class);
resultIntent.setAction(Intent.ACTION_MAIN);
resultIntent.addCategory(Intent.CATEGORY_LAUNCHER);
resultIntent.putExtra("ShowDialog", true);
PendingIntent pi = PendingIntent.getActivity(context, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
mBuilder.setContentIntent(pi);
NotificationManager mNotificationManager =
(NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify((int)id, mBuilder.build());
MainActivity.java
@Override
public void onResume() {
super.onResume();
// this is always null
Bundle extras = getIntent().getExtras();
if(extras != null) {
DialogPopupFragment fr = new DialogPopupFragment();
fr.show(getFragmentManager(), "DialogPopupFragment");
}
}
答案 0 :(得分:2)
尝试在resultIntent上设置标志FLAG_ACTIVITY_SINGLE_TOP,并实现方法 MainActivity中的onNewIntent()