I have an activity that loads a Fragment A in it. Fragment A contains ListView and when clicking on list item I load another Fragment B in place of Fragment A to show the listvi
If you want backstack animations you'll need to use:
setCustomAnimations(int enter, int exit, int popEnter, int popExit)
Something like:
setCustomAnimations(R.anim.enter_from_left, R.anim.enter_from_left, R.anim.exit_to_left, R.anim.exit_to_left);