This google code can be used here:
https://code.google.com/p/android-3d-flip-view-transition
Once it is imported, you simply use:
AnimationFactory.flipTransition(viewFlipper, FlipDirection.LEFT_RIGHT);
And you feel good, just an efficient library.
EDIT:
Another option is to include an animated call in your intentions, but turning the page would be difficult for that. A simple style animation or scroll in style can be implemented:
overridePendingTransition (int enterAnim, int exitAnim)
push_right_in.xml <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:fromXDelta="-100%p" android:toXDelta="0" android:duration="@android:integer/config_shortAnimTime"/> <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="@android:integer/config_shortAnimTime" /> </set> push_right_out.xml <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:fromXDelta="0" android:toXDelta="100%p" android:duration="@android:integer/config_shortAnimTime"/> <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="@android:integer/config_shortAnimTime" /> </set>
Is it closer to what you need? The library that I posted in the first answer is very easy to use and gives a good effect.
source share