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; // ww w . j a va 2 s.com import android.view.View; /** * Created with IntelliJ IDEA. * User: SimoneBellotti * Date: 24/11/2014 * Time: 13.10 */ public class StackTransformer extends BaseTransformer { @Override protected void onTransform(View view, float position) { view.setTranslationX(position < 0 ? 0f : -view.getWidth() * position); } }