We are using Fragments and we don\'t need them to be automatically recovered when the Activity is recreated. But Android every time when Activity::onCreate(Bundle save
Activity::onCreate(Bundle save
We finished by adding to activity:
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(null); }
It suppresses any saved data on create/recreate cycle of an Activity and avoids fragments auto re-creation.