How to make page turning effect in Android?

Kumar picture Kumar · Oct 6, 2009 · Viewed 8.3k times · Source

Can any one tell me how to make page turn effect in Android?
Can any one please provide me some code snippet.

Answer

Dimitar Dimitrov picture Dimitar Dimitrov · Oct 6, 2009

Take a look at this.

It's a Calculator application, which changes between normal/scientific mode on swipe gesture:

onFling(MotionEvent, MotionEvent, float, float)

It uses TranslateAnimation to accomplish the effect, but dragging between the views and tracking your finger, like in the iPhone is not implemented. Try using

onScroll(MotionEvent, MotionEvent, float, float)

for that.

As for Flexbook-like component, it shouldn't be hard to implement, if you use the masking approach.

Android M3 (pre-1.0 version) even had PageTurner widget, but it got deprecated, since it wasn't generic-enough, like the other widgets. You can try and dig up the old Android sources to find the implementation of PageTurner and modify it for Cupcake/Donut.