问题
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