Loading api/current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -30608,6 +30608,7 @@ package android.view { field protected static final int[] WINDOW_FOCUSED_STATE_SET; field public static final android.util.Property X; field public static final android.util.Property Y; field public static final android.util.Property Z; } public static class View.AccessibilityDelegate { core/java/android/view/View.java +16 −0 Original line number Diff line number Diff line Loading @@ -18862,6 +18862,22 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } }; /** * A Property wrapper around the <code>z</code> functionality handled by the * {@link View#setZ(float)} and {@link View#getZ()} methods. */ public static final Property<View, Float> Z = new FloatProperty<View>("z") { @Override public void setValue(View object, float value) { object.setZ(value); } @Override public Float get(View object) { return object.getZ(); } }; /** * A Property wrapper around the <code>rotation</code> functionality handled by the * {@link View#setRotation(float)} and {@link View#getRotation()} methods. Loading
api/current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -30608,6 +30608,7 @@ package android.view { field protected static final int[] WINDOW_FOCUSED_STATE_SET; field public static final android.util.Property X; field public static final android.util.Property Y; field public static final android.util.Property Z; } public static class View.AccessibilityDelegate {
core/java/android/view/View.java +16 −0 Original line number Diff line number Diff line Loading @@ -18862,6 +18862,22 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } }; /** * A Property wrapper around the <code>z</code> functionality handled by the * {@link View#setZ(float)} and {@link View#getZ()} methods. */ public static final Property<View, Float> Z = new FloatProperty<View>("z") { @Override public void setValue(View object, float value) { object.setZ(value); } @Override public Float get(View object) { return object.getZ(); } }; /** * A Property wrapper around the <code>rotation</code> functionality handled by the * {@link View#setRotation(float)} and {@link View#getRotation()} methods.