Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make page turning effect in Android?

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

like image 792
Kumar Avatar asked Oct 06 '09 05:10

Kumar


1 Answers

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.

like image 131
Dimitar Dimitrov Avatar answered Oct 05 '22 23:10

Dimitar Dimitrov