Search code examples
androidanimationviewflipper

Android Card flip Animation


Im trying to have a card flip animation between activities. I looked at the example given by google but i only got more confused on how it works. I want to be able to click a button and have the card flip animation between two activites. Is there any examples on how to do this using a button and two activities?


Solution

  • As per my knowledge,3D transitions are not supported by window manager.

    Behind this there is a reason, that to achieve FLIP animation both views must be loaded to show mirror effect. While activities are stand alone processes in Android.

    So If you want such animations better you use fragments rather activities.

    But If you still want it with activities. Here is the alternative Click