Reputation: 1858
I want to refresh the tab with its latest content, even if the user is coming back to the activity from a previous home button click.
Upvotes: 0
Views: 286
Reputation: 28418
Just make sure you update the tab inside of Activity.onResume()
.
Upvotes: 0
Reputation: 26547
You should override onSaveInstanceState()
as explained in this question.
Upvotes: 1