Lines Matching defs:Property

25 import android.util.Property;
64 * <a href="{@docRoot}guide/topics/graphics/prop-animation.html#object-animator">Property
84 private Property mProperty;
130 * Sets the property that will be animated. Property objects will take precedence over
136 public void setProperty(@NonNull Property property) {
162 * <p>If this animator was created with a {@link Property} object instead of the
164 * Property#getName() name} of that Property object instead. If this animator was
223 private <T> ObjectAnimator(T target, Property<T, ?> property) {
289 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) {
308 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty,
309 Property<T, Integer> yProperty, Path path) {
420 public static <T> ObjectAnimator ofArgb(T target, Property<T, Integer> property,
488 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property,
508 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty,
509 Property<T, Float> yProperty, Path path) {
622 * in a <code>PointF</code> to follow the <code>Path</code>. If the <code>Property</code>
625 * associated with the <code>Property</code>.
666 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property,
692 * @param converter Converts the animated object to the Property type.
701 public static <T, V, P> ObjectAnimator ofObject(T target, Property<T, P> property,
714 * from <code>PointF</code> to the type associated with the <code>Property</code>.
728 public static <T, V> ObjectAnimator ofObject(T target, @NonNull Property<T, V> property,
742 * android.util.Property} objects used to construct the PropertyValuesHolder objects or (if the