Fragment standard transition not animating

后端 未结 6 657
执笔经年
执笔经年 2020-11-30 22:46

I\'m using the v4 android compatibility library to develop a tablet UI using fragments specifically for Android 2.2 devices and up.

Everything is working as it shoul

6条回答
  •  感情败类
    2020-11-30 22:50

    to perform top_to_bottom animation for fragment,

    follow same to do top to bottom

    FragmentTransaction ft = getFragmentManager().beginTransaction();
    ft.setCustomAnimations(R.anim.top_to_bottom_fragment,
    android.R.animator.fade_out); ft.replace(R.id.simple_fragment,
    fragment); 
    ft.commit();
    

    top_to_bottom_fragment.xml

    
    

    where valueFrom="-800" indicate bottom of your fragment layout.

提交回复
热议问题