Created
August 25, 2014 13:35
-
-
Save anonymous/d532d41fa01c02a65782 to your computer and use it in GitHub Desktop.
This file contains 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
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); | |
} | |
} | |
} |
hey bro what is dummyImageView this code
You can declare it before int pageWidth = view.getWidth();
as:
View dummyImageView = view.findViewById(R.id.image);
hii if i want use a dynamic image then
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hey bro what is dummyImageView this code