Skip to content Skip to sidebar Skip to footer

Android: Page Curl Effect Like Iphone

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 ha

Solution 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.

Solution 2:

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

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

Post a Comment for "Android: Page Curl Effect Like Iphone"