Back to project page Swipe-Tabs.
The source code is released under:
MIT License
If you think the Android project Swipe-Tabs listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package it.bellotti.android.swipetabs.transforms; /*from w w w . j a v a2 s. c om*/ import android.support.v4.view.ViewPager; import android.view.View; /** * Created with IntelliJ IDEA. * User: SimoneBellotti * Date: 20/11/2014 * Time: 15.26 */ public class AlphaTransformer implements ViewPager.PageTransformer { @Override public void transformPage(View view, float position) { final float normPosition = Math.abs(Math.abs(position) - 1); view.setAlpha(normPosition); } }