Skip to content Skip to sidebar Skip to footer

Bundle Not Restored In Activity (appcompat 7:25.1 Bug)

I have implemented simple drill-down pattern with several activities that pass data to display. But when I go back (either android back button or toolbar's back button) my app cras

Solution 1:

As you can see from the trace you provided, the activity was stopped and state was saved. Therefore later when activity is to be restored it will call onCreate().

TestItemsActivity.onSaveInstanceState()
TestItemsActivity.onStop()

Post a Comment for "Bundle Not Restored In Activity (appcompat 7:25.1 Bug)"