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

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

Introduction

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

Prototype

public ViewPropertyAnimatorCompat rotationYBy(float f) 

Source Link

Usage

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

@Override
public void setupAnimation(View item, int position, int scrollDirection, ViewPropertyAnimatorCompat animator) {
    animator.rotationYBy(INITIAL_ROTATION_ANGLE * scrollDirection);
}

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

@Override
public void setupAnimation(View item, int position, int scrollDirection, ViewPropertyAnimatorCompat animator) {
    animator.rotationYBy(-INITIAL_ROTATION_ANGLE);
}