我的应用会发出通知。通过单击通知,应用程序需要启动或带到前面。以下是通知的意图:
Intent launch_intent = new Intent("android.intent.action.MAIN");
launch_intent.setComponent(new ComponentName("com.example.helloworld","com.example.helloworld.MainActivity"));
launch_intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
launch_intent.addCategory(Intent.CATEGORY_LAUNCHER);
launch_intent.putExtra("some_data", "value");
在我的应用程序中,我想通过点击通知确定它是否已启动或带到前面,所以我在那里使用putExtra。然后在MainActivity的onResume中我检查意图数据。这很好用的是通过点击通知启动的应用程序。
但是,如果通过通知单击将应用程序置于最前面,则在MainActivity的onResume中没有意图数据。
我认为原因是:MainActivity是根活动,它是启动画面。当应用程序被带到前面时,可以有任意数量的活动。当它被带到前面时,我想保持它的状态。
这样做的正确方法是什么?
答案 0 :(得分:0)
在您的活动中覆盖onNewIntent()
并检查其中的值。如果您希望将来调用getIntent()
来返回此新意图,则可以调用setIntent()
并传递新意图。
答案 1 :(得分:0)
试用onNewIntent()
方法
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
String value = intent.getStringExtra("some_data");
}