In an app, I try to animate the removal of a Fragment.
transaction.remove(fragmentVideo).remove(fragmentProgressBar).replace(R.id.content_pane_calling, endFragment);
transaction.setCustomAnimations(R.anim.slide_in, R.anim.slide_up);
transaction.commit();
The Framework ignores this completely. The Fragment itself gets removed, but the visual is not nice. Any FragmentTransaction#replace
works well with those animations. I'm using the SupportLibrary v23.1.
Thanks for helping me out :)