Home | History | Annotate | Download | only in animation

Lines Matching refs:interpolator

582      * Sets the interpolator on one of the animation objects used by this transition. The
583 * <code>transitionType</code> parameter determines the animation whose interpolator
588 * the animation whose interpolator is being set.
589 * @param interpolator The interpolator that the specified animation should use.
592 public void setInterpolator(int transitionType, TimeInterpolator interpolator) {
595 mChangingAppearingInterpolator = interpolator;
598 mChangingDisappearingInterpolator = interpolator;
601 mChangingInterpolator = interpolator;
604 mAppearingInterpolator = interpolator;
607 mDisappearingInterpolator = interpolator;
613 * Gets the interpolator on one of the animation objects used by this transition. The
614 * <code>transitionType</code> parameter determines the animation whose interpolator
619 * the animation whose interpolator is being returned.
620 * @return TimeInterpolator The interpolator that the specified animation uses.