user4257999
user4257999

Reputation:

Prevent android activities from reloading

I made an Android app with 5 tabs using this example: http://www.exoguru.com/android/material-design/navigation/android-sliding-tabs-with-material-design.html but when I swype to the first tab, then swype to the 5th tab and than swype back to the first tab, the first, second and third tabs reload. Is there a way to prevent these tabs from reloading?

Upvotes: 1

Views: 48

Answers (1)

Elltz
Elltz

Reputation: 10859

setOffscreenPageLimit(5);//on your viewpager

Upvotes: 1

Related Questions