Is it possible to use flip animation when switching between actions?

When switching between actions, such as a call startActivity();or when using a button back, the screen slides on the sides.

Is there any way to change this? I have a flash card, for example, an application, so when I switch from activity A to activity B, I would like the screen to flip over like the rotation of a real flash card.

Is there any way to do this out of the box? Or does it require some custom animations?

+5
source share
2 answers

As far as I know, applications do not have control over the transitions between their actions.

, , ViewGroup, , . , .

+1

Android 2.0 (API Level 5), Activity.overridePendingTransition .

. http://developer.android.com/reference/android/app/Activity.html#overridePendingTransition(int, int)

+7

All Articles