Possible Duplicate:
Flip-Animation for Activity-Change
I’m new to Android Animation.
I wanted to implement flip like animation when making transition from one activity to another.
Note that I’m not talking about page flip animation, rather the activity should turn from right to left from back side.
I might not be clear in the question, provide your suggestion.
I implemented fade-in , fade-out by using overridePendingTransition(R.anim.fade_in, R.anim.fade_out); but don’t have an idea whether flip can be done in same way.
Check this out, android-startactivity-rotate-3d-animation-activityswitcher
This example makes use of animation in and animation out, such that it will look like a 3d flip taking place between activities. In the first activity’s onResume you will be able to see a “animation out” followed by “animation in” in Activity two.