Home | History | Annotate | Download | only in animation

Lines Matching defs:PropertyValuesHolder

34  * should take on during an animation. PropertyValuesHolder objects can be used to create
38 public class PropertyValuesHolder implements Cloneable {
54 * PropertyValuesHolder, since it holds all of the per-property information. This
62 * PropertyValuesHolder, since it holds all of the per-property information. This
138 private PropertyValuesHolder(String propertyName) {
146 private PropertyValuesHolder(Property property) {
154 * Constructs and returns a PropertyValuesHolder with a given property name and
158 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
160 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
165 * Constructs and returns a PropertyValuesHolder with a given property and
169 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
171 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) {
176 * Constructs and returns a PropertyValuesHolder with a given property name and
185 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
189 public static PropertyValuesHolder ofMultiInt(String propertyName, int[][] values) {
210 * Constructs and returns a PropertyValuesHolder with a given property name to use
218 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
219 * @see ObjectAnimator#ofPropertyValuesHolder(Object, PropertyValuesHolder...)
221 public static PropertyValuesHolder ofMultiInt(String propertyName, Path path) {
228 * Constructs and returns a PropertyValuesHolder with a given property and
239 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
241 * @see ObjectAnimator#ofPropertyValuesHolder(Object, PropertyValuesHolder...)
243 public static <V> PropertyValuesHolder ofMultiInt(String propertyName,
249 * Constructs and returns a PropertyValuesHolder object with the specified property name or
263 * @return A PropertyValuesHolder for a multi-int parameter setter.
265 public static <T> PropertyValuesHolder ofMultiInt(String propertyName,
272 * Constructs and returns a PropertyValuesHolder with a given property name and
276 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
278 public static PropertyValuesHolder ofFloat(String propertyName, float... values) {
283 * Constructs and returns a PropertyValuesHolder with a given property and
287 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
289 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) {
294 * Constructs and returns a PropertyValuesHolder with a given property name and
303 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
307 public static PropertyValuesHolder ofMultiFloat(String propertyName, float[][] values) {
328 * Constructs and returns a PropertyValuesHolder with a given property name to use
336 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
337 * @see ObjectAnimator#ofPropertyValuesHolder(Object, PropertyValuesHolder...)
339 public static PropertyValuesHolder ofMultiFloat(String propertyName, Path path) {
346 * Constructs and returns a PropertyValuesHolder with a given property and
357 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
360 public static <V> PropertyValuesHolder ofMultiFloat(String propertyName,
366 * Constructs and returns a PropertyValuesHolder object with the specified property name or
380 * @return A PropertyValuesHolder for a multi-float parameter setter.
382 public static <T> PropertyValuesHolder ofMultiFloat(String propertyName,
389 * Constructs and returns a PropertyValuesHolder with a given property name and
398 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
400 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator,
402 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
409 * Constructs and returns a PropertyValuesHolder with a given property name and
422 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
424 public static PropertyValuesHolder ofObject(String propertyName,
426 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
434 * Constructs and returns a PropertyValuesHolder with a given property and
443 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
445 public static <V> PropertyValuesHolder ofObject(Property property,
447 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
454 * Constructs and returns a PropertyValuesHolder with a given property and
468 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
472 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property,
474 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
482 * Constructs and returns a PropertyValuesHolder with a given property and
495 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
497 public static <V> PropertyValuesHolder ofObject(Property<?, V> property,
499 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
507 * Constructs and returns a PropertyValuesHolder object with the specified property name and set
515 * if the PropertyValuesHolder object is used in conjunction
517 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
525 public static PropertyValuesHolder ofKeyframe(String propertyName, Keyframe... values) {
531 * Constructs and returns a PropertyValuesHolder object with the specified property and set
540 * if the PropertyValuesHolder object is used in conjunction with
541 * {@link ObjectAnimator}, since otherwise PropertyValuesHolder has
546 public static PropertyValuesHolder ofKeyframe(Property property, Keyframe... values) {
551 static PropertyValuesHolder ofKeyframes(String propertyName, Keyframes keyframes) {
558 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
565 static PropertyValuesHolder ofKeyframes(Property property, Keyframes keyframes) {
571 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
584 * if the PropertyValuesHolder object is used in conjunction
586 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
602 * if the PropertyValuesHolder object is used in conjunction
604 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
635 * if the PropertyValuesHolder
637 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
669 * is derived from the values set on this PropertyValuesHolder. This type is used as
716 Log.w("PropertyValuesHolder", "Method " +
808 Log.w("PropertyValuesHolder","No such property (" + mProperty.getName() +
834 Log.e("PropertyValuesHolder", e.toString());
836 Log.e("PropertyValuesHolder", e.toString());
878 Log.e("PropertyValuesHolder", e.toString());
880 Log.e("PropertyValuesHolder", e.toString());
888 * PropertyValuesHolder object.
903 * PropertyValuesHolder object.
915 public PropertyValuesHolder clone() {
917 PropertyValuesHolder newPVH = (PropertyValuesHolder) super.clone();
931 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
945 Log.e("PropertyValuesHolder", e.toString());
947 Log.e("PropertyValuesHolder", e.toString());
973 * supplied to PropertyValuesHolder. The evaluator can be manually set, however, if so
988 * this PropertyValuesHolder object. This function is called by ValueAnimator.animateValue().
1019 * <p>Note that if this PropertyValuesHolder object is used with ObjectAnimator, the property
1077 static class IntPropertyValuesHolder extends PropertyValuesHolder {
1143 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
1167 Log.e("PropertyValuesHolder", e.toString());
1169 Log.e("PropertyValuesHolder", e.toString());
1214 static class FloatPropertyValuesHolder extends PropertyValuesHolder {
1280 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
1304 Log.e("PropertyValuesHolder", e.toString());
1306 Log.e("PropertyValuesHolder", e.toString());
1352 static class MultiFloatValuesHolder extends PropertyValuesHolder {
1375 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
1455 static class MultiIntValuesHolder extends PropertyValuesHolder {
1478 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator