Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Dadoufi/385f3c39f05e144d4a1eb499f961281a to your computer and use it in GitHub Desktop.
Save Dadoufi/385f3c39f05e144d4a1eb499f961281a to your computer and use it in GitHub Desktop.
public class ParallaxPageTransformer implements ViewPager.PageTransformer {
public void transformPage(View view, float position) {
int pageWidth = view.getWidth();
if (position < -1) { // [-Infinity,-1)
// This page is way off-screen to the left.
view.setAlpha(1);
} else if (position <= 1) { // [-1,1]
dummyImageView.setTranslationX(-position * (pageWidth / 2)); //Half the normal speed
} else { // (1,+Infinity]
// This page is way off-screen to the right.
view.setAlpha(1);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment