Android - How to end a Fragment

user222786 picture user222786 · Jun 20, 2013 · Viewed 18.1k times · Source

In my application I have a navigation drawer, and the way my app works is there is only one activity and if you select something from the Navigation drawer it starts/replaces the current fragment. How Can I make it so that when something is selected from the navigation drawer and a new fragment starts the old fragment ends

I cant do

@Override
public void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    getActivity().finish();
}   

because that would kill the app since there is only one activity.

How do I kill the fragment?

EDIT: my fragment transaction

Home HomeFragment = new Home();
        transaction.replace(R.id.llhome, HomeFragment);
        transaction.addToBackStack(null);
        transaction.commit();
              mDrawerList.setItemChecked(position, true);
                mDrawerLayout.closeDrawer(mDrawerList);

thanks

Answer

Chetan picture Chetan · Mar 22, 2014

Just call:

getActivity().onBackPressed();