Example usage for android.view View Z

List of usage examples for android.view View Z

Introduction

In this page you can find the example usage for android.view View Z.

Prototype

Property Z

To view the source code for android.view View Z.

Click Source Link

Document

A Property wrapper around the z functionality handled by the View#setZ(float) and View#getZ() methods.

Usage

From source file:com.bartoszlipinski.viewpropertyobjectanimator.ViewPropertyObjectAnimator.java

@SuppressLint("NewApi")
public ViewPropertyObjectAnimator z(float z) {
    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        animateProperty(View.Z, z);
    }/*ww  w  .  ja v  a  2  s. com*/
    return this;
}

From source file:com.bartoszlipinski.viewpropertyobjectanimator.ViewPropertyObjectAnimator.java

@SuppressLint("NewApi")
public ViewPropertyObjectAnimator zBy(float zBy) {
    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        animatePropertyBy(View.Z, zBy);
    }/*from  www. j  a v  a2  s .c om*/
    return this;
}