我怎样才能发送到活动最后的意图是什么?
对于文档onNewIntent()
建议我需要做这样的事情:
class MyActivity {
public void onNewIntent(Intent intent){
setIntent(intent);
reactToIntentAndDoStuff()
super.onNewIntent(Intent intent);
}
public void onCreate(){
reactToIntentAndDoStuff()
super.onCreate();
}
public void onResume(){
reactToIntentAndDoStuff()
super.onResume();
}
public void reactToIntentAndDoStuff(){
Intent intent = getIntent();
}
}
这看起来对吧? 或者,还有更好的方法? 我活动的launchMode
将singleTop
。 这将需要相同的意图作出反应,或多或少以同样的方式,无论是已经实例化与否。