user3499336
user3499336

Reputation:

Android ViewPager swipe like notebook page change

I want to add notebook type ViewPager to swipe like notebook page. I know about simple ViewPager. So how can i=I do that? Can I use animation for that or any library available?

Upvotes: 2

Views: 5431

Answers (1)

gsanskar
gsanskar

Reputation: 669

You need to implement Flip Effect as in a Notebook..

The following three open source libraries will help :

  1. JazzyViewPager : https://github.com/jfeinstein10/JazzyViewPager
  2. CardFlipAnimation : https://github.com/balesz/android-tutorial-CardFlipAnimation
  3. Android Page Curl: https://github.com/MysticTreeGames/android-page-curl

The above three libraries can be used to produce an animation like changing the page of a book.

Hope this helps!

Upvotes: 2

Related Questions