Im creating an app with an action bar, and the tabs go to different web pages. When the user clicks on a different tab I want the previous tabs web page to stay in the same state (ie not reload when the tab is pressed again).
Whats the best way to do this? Separate activities? Fragments? Multiple web views in one activity?
Thanks
Use tabs in the ActionBar, which allows you to use Fragments. When changing tabs, the Fragments will replace, and the previous Fragment will hold its contents.
See Action Bar – Adding Navigation Tabs | Android Developers