How can I get a fragment to save it\'s state? I\'ve tried everything but no luck, nothing is working.
Ive tried adding:
public void onSaveInstanceSta
Have you looked into this: Fragment's onSaveInstanceState() is never called
You need to make sure to call super.onSaveInstanceState(Bundle) in your FragmentActivity.
super.onSaveInstanceState(Bundle)
FragmentActivity