When I use an intent to move from parent activity to another, and then use action bar nav to go back to parent, the parent activity has lost all my changes and values (as a user) and is back to default xml display i have for it.
I have these in my Child activity OnCreate:
ActionBar actionBar = getSupportActionBar();
actionBar.setHomeButtonEnabled(true);
actionBar.setDisplayHomeAsUpEnabled(true);
And labeled my parent activity appropiately:
android:parentActivityName=".MainActivity"
What do I need to make it store or remember those changes when traveling between activities?