WIthin my main activity I have a simple PlaceHolder Fragment.
Via the options menu (actionbar) I would like to replace that fragment with a user settings preference fragment. In this specific case this is a good way.
All works well, but a "back" button in the user settings fragment will exit the App. I would like to go back to the original fragment. How come?
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView( R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.replace( R.id.container, new PlaceholderFragment()).commit();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_settings) {
getFragmentManager().beginTransaction()
.replace( R.id.container, new UserSettingsFragment()).addToBackStack(null).commit();
return true;
}
return super.onOptionsItemSelected(item);
}
The main layout file is:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="nl.deholtmans.usersettings.MainActivity"
tools:ignore="MergeRootFrame" />
The UserSettings fragment is:
public class UserSettingsFragment extends PreferenceFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
View view = super.onCreateView(inflater, container, savedInstanceState);
view.setBackgroundColor( Color.WHITE);
addPreferencesFromResource( R.xml.preferences);
return view;
}
}
the issue is that
getFragmentManager
andgetSupportFragmentManager
returns different things. In one call you're using the native fragmentManager and the other the support one. You can't use both together.Change both to the support that it will work fine:
ps: that means that both fragments you're calling should use extend a Support fragment