Lines Matching refs:animator

105      * A lazily-created ValueAnimator used in order to get some default animator properties
124 * request several animations prior to actually starting the underlying animator. This
125 * enables us to run one single animator to handle several properties in parallel. Each
128 * on that list are added to the list of properties associated with that animator.
162 * underlying animator) after the caller is done setting the properties that should be
213 * This list tracks the list of properties being animated by any particular animator.
214 * In most situations, there would only ever be one animator running at a time. But it is
218 * animator handling the animation. On every update event for an Animator, we ask the
257 * Sets the duration for the underlying animator that animates the requested properties.
258 * By default, the animator uses the default value for ValueAnimator. Calling this method
314 * Sets the startDelay for the underlying animator that animates the requested properties.
315 * By default, the animator uses the default value for ValueAnimator. Calling this method
332 * Sets the interpolator for the underlying animator that animates the requested properties.
333 * By default, the animator uses the default interpolator for ValueAnimator. Calling this method
385 * the property animations. Note that the underlying animator is animating between
387 * by ViewPropertyAnimator). So the animator cannot give information on the current
856 * Starts the underlying Animator for a set of properties. We use a single animator that
865 ValueAnimator animator = ValueAnimator.ofFloat(1.0f);
875 mAnimatorMap.put(animator, new PropertyBundle(propertyMask, nameValueList));
877 mAnimatorSetupMap.put(animator, mPendingSetupAction);
881 mAnimatorCleanupMap.put(animator, mPendingCleanupAction);
885 mAnimatorOnStartMap.put(animator, mPendingOnStartAction);
889 mAnimatorOnEndMap.put(animator, mPendingOnEndAction);
892 animator.addUpdateListener(mAnimatorEventListener);
893 animator.addListener(mAnimatorEventListener);
895 animator.setStartDelay(mStartDelay);
898 animator.setDuration(mDuration);
901 animator.setInterpolator(mInterpolator);
903 animator.start();
910 * pending animations, awaiting the eventual start() of the underlying animator. A
912 * (which enables us to end up starting just one animator for all of the properties
1066 * about are the end event (which we use to clean up the animator map when an animator
1137 * @param animation The animator associated with the properties that need to be
1138 * set. This animator holds the animation fraction which we will use to calculate