Android pop fragment from backstack with animation

前端 未结 3 1230
天命终不由人
天命终不由人 2021-02-19 04:52

I have an activity that loads a Fragment A in it. Fragment A contains ListView and when clicking on list item I load another Fragment B in place of Fragment A to show the listvi

3条回答
  •  没有蜡笔的小新
    2021-02-19 05:00

    If you want backstack animations you'll need to use:

    setCustomAnimations(int enter, int exit, int popEnter, int popExit)

    Something like:

    setCustomAnimations(R.anim.enter_from_left, R.anim.enter_from_left,
            R.anim.exit_to_left, R.anim.exit_to_left); 
    

提交回复
热议问题