how I can pop specific fragment from stack and remove others from a fragment? for example these are my fragments and I\'m in E right know.
A-> B -> C -> D ->E
Use following code for pop back stack entry:
FragmentManager fm = getSupportFragmentManager(); if (fm.getBackStackEntryCount() > 0) { fm.popBackStack(); }else { super.onBackPressed(); }