Start a Project

How to transform previous and next page in viewpager

ViewPager in Android allows the user to flip left and right through pages of data. In our android viewPager is the widget that allows the user to swipe left or right to see an entirely new screen. In a sense, it’s just a nicer way to show the user multiple tabs. It also has the ability to dynamically add and remove pages (or tabs) at any time.

Customize the Animation with PageTransformer

PagerTransformer is an interface and supplies it to the view pager. The interface exposes a single method, transformPager() at each point in the screen’s transition, this method is called once for each visible page (generally there’s only one visible page) and for adjacent pages just off the screen. In transformPage()  method there is position variable which varies:

Conditions:

  1. When position < -1 (This page is way off-screen to the left).
  2. When position [-1,1] (Modify the default slide transition to shrink the page as well ).
  3. When position [1,+infinity) Modify the default slide transition to shrink the page as well.

 

Exit mobile version