Lines Matching refs:duration

55  * animation. The other animations begin after a delay that is set to the default duration
68 * basic animation properties, such as the duration, start delay, and properties being animated.
161 * The default duration used by all animations.
176 * the appearing item is the default duration, since it should wait for the items to move
315 * Sets the duration to be used by all animations of this transition object. If you want to
316 * set the duration of just one of the animations in particular, use the
319 * @param duration The length of time, in milliseconds, that the transition animations
322 public void setDuration(long duration) {
323 mChangingAppearingDuration = duration;
324 mChangingDisappearingDuration = duration;
325 mChangingDuration = duration;
326 mAppearingDuration = duration;
327 mDisappearingDuration = duration;
472 * Sets the duration on one of the animation objects used by this transition. The
473 * <code>transitionType</code> parameter determines the animation whose duration
478 * the animation whose duration is being set.
479 * @param duration The length of time, in milliseconds, that the specified animation should run.
482 public void setDuration(int transitionType, long duration) {
485 mChangingAppearingDuration = duration;
488 mChangingDisappearingDuration = duration;
491 mChangingDuration = duration;
494 mAppearingDuration = duration;
497 mDisappearingDuration = duration;
503 * Gets the duration on one of the animation objects used by this transition. The
504 * <code>transitionType</code> parameter determines the animation whose duration
509 * the animation whose duration is returned.
510 * @return long The duration of the specified animation.
536 * @param duration The length of time, in milliseconds, to delay before launching the next
539 public void setStagger(int transitionType, long duration) {
542 mChangingAppearingStagger = duration;
545 mChangingDisappearingStagger = duration;
548 mChangingStagger = duration;
730 final long duration;
734 duration = mChangingAppearingDuration;
739 duration = mChangingDisappearingDuration;
744 duration = mChangingDuration;
749 duration = 0;
772 setupChangeAnimation(parent, changeReason, baseAnimator, duration, child);
781 duration, tempParent);
836 Animator baseAnimator, final long duration, final View child) {
875 // We run an animator for the default duration+100 (an arbitrary time, but one
879 setDuration(duration + 100);
941 anim.setDuration(duration);