JustCurious
JustCurious

Reputation: 1858

Refresh tab contents even when returning to the application from a home button pressed

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

Answers (2)

Vit Khudenko
Vit Khudenko

Reputation: 28418

Just make sure you update the tab inside of Activity.onResume().

Upvotes: 0

Dalmas
Dalmas

Reputation: 26547

You should override onSaveInstanceState() as explained in this question.

Upvotes: 1

Related Questions