Before some days I have posted one question link
It is working perfectly, but i have added another fragment E. Now the problem is that i want to move from Fragment D to Fragment E but i want fragment D in its pause state. So i have done following code
getActivity().getSupportFragmentManager().beginTransaction().add(R.id.content_frame, departingCheckOutFragment).addToBackStack(TAG).commit();
It is working perfectly when i press back button. I am able to go to Fragment D in its resume state and createview is not called. But now when i press again back previous transaction is called Fragment C to Fragment D which i don't want to open. I directly want to go to Fragment B Can you please help me out with this issue?
Thank You