我在片段中有一个recyclerview项目,当我点击来自recyclerview的项目时,它会用新的片段补充olde片段。当转换发生时,我有一个动画:
FragmentTransaction ft = activity.getSupportFragmentManager().beginTransaction();
ft.setCustomAnimations(R.anim.slide_out_top,R.anim.slide_in_top);
ft.replace(R.id.container, AnotherFragment.newInstance());
ft.comit;