Home | History | Annotate | Download | only in sgv

Lines Matching refs:animators

142      * animators should resume from where the last animator set left off.
1698 final List<Animator> animators = new ArrayList<Animator>();
1700 // b/8422632 - Without this dummy first animator, startDelays of subsequent animators won't
1701 // be honored correctly; all animators will block regardless of startDelay until the first
1705 animators.add(anim);
1707 addOutAnimatorsForStaleViews(animators, mAnimationOutMode);
1709 // Play the In animators at a slight delay after all Out animators have started.
1710 final int animationInStartDelay = animators.size() > 0 ?
1712 addInAnimators(animators, mAnimationInMode, animationInStartDelay);
1714 if (animators != null && animators.size() > 0) {
1716 animatorSet.playTogether(animators);
1762 * Add animators for animating in new views as well as updating positions of views that
1765 private void addInAnimators(List<Animator> animators, AnimationIn animationInMode,
1773 addFlyInAllViewsAnimators(animators);
1777 addUpdateViewPositionsAnimators(animators, true /* cascade animation */,
1782 addUpdateViewPositionsAnimators(animators, false /* cascade animation */,
1787 addUpdateViewPositionsAnimators(animators, true /* cascade animation */,
1792 addUpdateViewPositionsAnimators(animators, true /* cascade animation */,
1797 addUpdateViewPositionsAnimators(animators, true /* cascade animation */,
1807 * Add animators for animating out stale views
1810 private void addOutAnimatorsForStaleViews(List<Animator> animators,
1817 // For each stale view to animate out, retrieve the animators for the view, then attach
1856 animators.addAll(viewAnimators);
1862 * Handle setting up the animators of child views when the animation is invoked by a change
1866 private List<Animator> addFlyInAllViewsAnimators(List<Animator> animators) {
1872 if (animators == null) {
1873 animators = new ArrayList<Animator>();
1893 SgvAnimationHelper.addTranslationRotationAnimators(animators, childToAnimate,
1897 return animators;
1904 private List<Animator> addUpdateViewPositionsAnimators(List<Animator> animators,
1911 if (animators == null) {
1912 animators = new ArrayList<Animator>();
1946 SgvAnimationHelper.addFadeAnimators(animators, childToAnimate,
1971 SgvAnimationHelper.addTranslationRotationAnimators(animators, childToAnimate,
1988 SgvAnimationHelper.addTranslationRotationAnimators(animators,
2001 SgvAnimationHelper.addSlideInFromRightAnimators(animators,
2012 // Create animators that translate the view back to translation = 0
2015 SgvAnimationHelper.addXYTranslationAnimators(animators,
2018 SgvAnimationHelper.addFadeAnimators(animators, childToAnimate,
2021 SgvAnimationHelper.addExpandInAnimators(animators,
2026 SgvAnimationHelper.addFadeAnimators(animators, childToAnimate,
2038 return animators;
4099 * @param animators The list of animators to be played
4101 void onAnimationReady(int animationMode, List<Animator> animators);