Lines Matching defs:PropertyValuesHolder

31  * should take on during an animation. PropertyValuesHolder objects can be used to create
35 public class PropertyValuesHolder implements Cloneable {
51 * PropertyValuesHolder, since it holds all of the per-property information. This
59 * PropertyValuesHolder, since it holds all of the per-property information. This
130 private PropertyValuesHolder(String propertyName) {
138 private PropertyValuesHolder(Property property) {
146 * Constructs and returns a PropertyValuesHolder with a given property name and
150 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
152 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
157 * Constructs and returns a PropertyValuesHolder with a given property and
161 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
163 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) {
168 * Constructs and returns a PropertyValuesHolder with a given property name and
172 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
174 public static PropertyValuesHolder ofFloat(String propertyName, float... values) {
179 * Constructs and returns a PropertyValuesHolder with a given property and
183 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
185 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) {
190 * Constructs and returns a PropertyValuesHolder with a given property name and
199 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
201 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator,
203 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
210 * Constructs and returns a PropertyValuesHolder with a given property and
219 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
221 public static <V> PropertyValuesHolder ofObject(Property property,
223 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
230 * Constructs and returns a PropertyValuesHolder object with the specified property name and set
238 * if the PropertyValuesHolder object is used in conjunction
240 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
248 public static PropertyValuesHolder ofKeyframe(String propertyName, Keyframe... values) {
256 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
264 * Constructs and returns a PropertyValuesHolder object with the specified property and set
273 * if the PropertyValuesHolder object is used in conjunction with
274 * {@link ObjectAnimator}, since otherwise PropertyValuesHolder has
279 public static PropertyValuesHolder ofKeyframe(Property property, Keyframe... values) {
287 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
300 * if the PropertyValuesHolder object is used in conjunction
302 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
318 * if the PropertyValuesHolder object is used in conjunction
320 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
351 * if the PropertyValuesHolder object is used in conjunction
353 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
372 * is derived from the values set on this PropertyValuesHolder. This type is used as
417 Log.w("PropertyValuesHolder", "Method " +
500 Log.w("PropertyValuesHolder","No such property (" + mProperty.getName() +
521 Log.e("PropertyValuesHolder", e.toString());
523 Log.e("PropertyValuesHolder", e.toString());
551 Log.e("PropertyValuesHolder", e.toString());
553 Log.e("PropertyValuesHolder", e.toString());
561 * PropertyValuesHolder object.
573 * PropertyValuesHolder object.
582 public PropertyValuesHolder clone() {
584 PropertyValuesHolder newPVH = (PropertyValuesHolder) super.clone();
598 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
612 Log.e("PropertyValuesHolder", e.toString());
614 Log.e("PropertyValuesHolder", e.toString());
640 * supplied to PropertyValuesHolder. The evaluator can be manually set, however, if so
655 * this PropertyValuesHolder object. This function is called by ValueAnimator.animateValue().
685 * <p>Note that if this PropertyValuesHolder object is used with ObjectAnimator, the property
743 static class IntPropertyValuesHolder extends PropertyValuesHolder {
809 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
833 Log.e("PropertyValuesHolder", e.toString());
835 Log.e("PropertyValuesHolder", e.toString());
880 static class FloatPropertyValuesHolder extends PropertyValuesHolder {
946 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
970 Log.e("PropertyValuesHolder", e.toString());
972 Log.e("PropertyValuesHolder", e.toString());