How to implement dynamic page curl in android?

501 views Asked by At

I have implement the page curl in android by using the Github code of android_page_curl

  • Its working fine for me for only static pages.
  • In this example taken images from drawable folder and done the page curl.

But my requirement is i want to implement page curl for dynamic pages.

I want exactly like this Video Click here for video

Is this option is possible in android,If possible give me some suggestions or links how to do that.

Thanks in advance.

1

There are 1 answers

12
Stepango On

I see two options for you.

  1. Each time when content on your page has changed - generate a static page from it and reinit your page curl view with a new content(consider using getDrawingCache()).

  2. Write your own page curl lib for it.