Android, how to disable the 'wipe' effect when starting a new activity?

前端 未结 3 1881
借酒劲吻你
借酒劲吻你 2021-02-06 15:32

In my application, how do I disable the transition animation that shows the new activity layout enter from the right and the old one exit to left?

Versions 2.0 -> 2.2 if

3条回答
  •  你的背包
    2021-02-06 15:50

    Add this flag to your intent: android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION.

    Android docs states:

    If set in an Intent passed to Context.startActivity(), this flag will prevent the system from applying an activity transition animation to go to the next activity state.

    BTW: don't use it to set fire to an orphanage please :)

提交回复
热议问题