开发者

How to update the intent of an existing activity while calling startActivity?

开发者 https://www.devze.com 2023-01-16 10:35 出处:网络
I am having two activities, say activity A and B. Activity A is an ListActivity, and when the items in the list is selected, it will call startActivity() to bring up B.开发者_如何学Python The problem

I am having two activities, say activity A and B. Activity A is an ListActivity, and when the items in the list is selected, it will call startActivity() to bring up B.开发者_如何学Python The problem here is that when I am in B and click the home key, and then go to the application launcher to resume my application, A will be brought up again. This time when I click a different item in A, it will bring up B with the old data of the previously selected item before the home key was clicked.

After examinzing the code, I found that the startActivity does not update the intent of B. I found a post here about the similar question, and the answer was to overwrite the onNewIntent. However, I found that it doesn't work, because this method never get called when the second time I call startActivity. I am sure that this is the same instance, because I've printed out the instance number. Is there any other ways to update the intent of the activity? Or I need some other settings to make the onNewIntent get called? I didn't set any flags or launch modes, so everything is default.


protected void onListItemClick(ListView listView, View view, int position, long id) { 
   Intent intent = new Intent(this, B.class); 
   intent.putExtra(B.EXTRA, something); 
   startActivity(intent); 
} 
0

精彩评论

暂无评论...
验证码 换一张
取 消