I\'ve check some tutorials for animate transaction between fragments. I\'ve used this method for animation and it works:
fragmentTransaction.setCustomAnimatio
I have same issue, i used simple solution
1)create sliding_out_right.xml in anim folder
2) create sliding_in_left.xml in anim folder
3) simply using fragment transaction setCustomeAnimations() with two custom xml and two default xml for animation as follows :-
fragmentTransaction.setCustomAnimations(R.anim.sliding_in_left, R.anim.sliding_out_right, android.R.anim.slide_in_left, android.R.anim.slide_out_right );