How to make page turning effect in Android?

2020-02-20 06:52发布

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

1条回答
不美不萌又怎样
2楼-- · 2020-02-20 07:30

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.

查看更多
登录 后发表回答