Example usage for android.support.v4.view ViewPropertyAnimatorCompat translationYBy

List of usage examples for android.support.v4.view ViewPropertyAnimatorCompat translationYBy

Introduction

In this page you can find the example usage for android.support.v4.view ViewPropertyAnimatorCompat translationYBy.

Prototype

public ViewPropertyAnimatorCompat translationYBy(float f) 

Source Link

Usage

From source file:com.twotoasters.jazzylistview.effects.SlideInEffect.java

@Override
public void setupAnimation(View item, int position, int scrollDirection, ViewPropertyAnimatorCompat animator) {
    animator.translationYBy(-item.getHeight() / 2 * scrollDirection);
}

From source file:com.twotoasters.jazzylistview.effects.TiltEffect.java

@Override
public void setupAnimation(View item, int position, int scrollDirection, ViewPropertyAnimatorCompat animator) {
    animator.translationYBy(-item.getHeight() / 2 * scrollDirection).scaleX(1).scaleY(1)
            .alpha(JazzyHelper.OPAQUE);//from  w  w  w.jav a 2 s  .  com
}