All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twotoasters.jazzylistview.effects.ZipperEffect Maven / Gradle / Ivy

The newest version!
package com.twotoasters.jazzylistview.effects;

import android.view.View;

import com.nineoldandroids.view.ViewHelper;
import com.nineoldandroids.view.ViewPropertyAnimator;
import com.twotoasters.jazzylistview.JazzyEffect;

public class ZipperEffect implements JazzyEffect {

    @Override
    public void initView(View item, int position, int scrollDirection) {
        boolean isEven = position % 2 == 0;
        ViewHelper.setTranslationX(item, (isEven ? -1 : 1) * item.getWidth());
    }

    @Override
    public void setupAnimation(View item, int position, int scrollDirection, ViewPropertyAnimator animator) {
        animator.translationX(0);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy