I have Activity A and Fragment A (ListFragment). On click the flow goes to Activity B and Fragment B.
When on Activity/Fragment A the list data is saved in onSaveInstanceState (using a parcelable arraylist) and works fine for orientation changes. When going to Activity/Fragment B the state is saved however I can't figure out how to restore the state when going back.
None of the lifecycle events where state can be restored seem to be called.
Any suggestions?