Android: page curl effect like iphone

别来无恙 提交于 2019-12-09 05:53:07

问题


I want to create half page curl animation effect as shown in image:

I've used code from https://github.com/harism/android_page_curl/ , but it turns whole page. I just only want half page curl effect as shown in image.


回答1:


You could try to modify my implementation. It's not 3D but a nice 2D simulation using the plain canvas: http://code.google.com/p/android-page-curl/

If you enbale the debug mode you will see how it works and modifying the curl plane should be easy.




回答2:


It is enough to change part of code at updatePageRects() method in CurlRenderer class:

mPageRectRight.bottom = (mPageRectRight.bottom - mViewRect.height() * mMargins.bottom)/5;


来源:https://stackoverflow.com/questions/6096894/android-page-curl-effect-like-iphone

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!