在某个activity的onresume中获取其他activity传递的参数

有一个mainActivity,设置了加载模式为singleTask, 想要在onresume中得到从其他activity传递过来的参数,直接接收的话,发现接收不到,在其他地方,找到了答案,说是在mainActivity中 要重写onNewIntent函数,像这样

 @Override

protected void onNewIntent(Intent intent) {
// TODO Auto-generated method stub
super.onNewIntent(intent);
setIntent(intent);

}

果然能接收到参数了。

你可能感兴趣的:(在某个activity的onresume中获取其他activity传递的参数)