Created
September 22, 2014 11:33
-
-
Save Aracem/bf1b416da3ed5efaa45d to your computer and use it in GitHub Desktop.
ViewPager Page Transformer by Google
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.support.v4.view.ViewPager; | |
| import android.view.View; | |
| public class ZoomOutPageTransformer implements ViewPager.PageTransformer { | |
| private static final float MIN_SCALE = 0.87f; | |
| private static final float MIN_ALPHA = 0.5f; | |
| private float mMinAlpha = MIN_ALPHA; | |
| public ZoomOutPageTransformer() { | |
| } | |
| public ZoomOutPageTransformer(float minAlpha) { | |
| mMinAlpha = minAlpha; | |
| } | |
| public void transformPage(View view, float position) { | |
| int pageWidth = view.getWidth(); | |
| int pageHeight = view.getHeight(); | |
| if (position < -1) { // [-Infinity,-1) | |
| // This page is way off-screen to the left. | |
| view.setAlpha(0); | |
| } else if (position <= 1) { // [-1,1] | |
| // Modify the default slide transition to shrink the page as well | |
| float scaleFactor = Math.max(MIN_SCALE, 1 - Math.abs(position)); | |
| float vertMargin = pageHeight * (1 - scaleFactor) / 2; | |
| float horzMargin = pageWidth * (1 - scaleFactor) / 2; | |
| if (position < 0) { | |
| view.setTranslationX(horzMargin - vertMargin / 2); | |
| } else { | |
| view.setTranslationX(-horzMargin + vertMargin / 2); | |
| } | |
| // Scale the page down (between MIN_SCALE and 1) | |
| view.setScaleX(scaleFactor); | |
| view.setScaleY(scaleFactor); | |
| // Fade the page relative to its size. | |
| view.setAlpha(mMinAlpha + | |
| (scaleFactor - MIN_SCALE) / | |
| (1 - MIN_SCALE) * (1 - mMinAlpha)); | |
| } else { // (1,+Infinity] | |
| // This page is way off-screen to the right. | |
| view.setAlpha(0); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment