Home
last modified time | relevance | path

Searched refs:animSet (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/animation/
DAnimatorSetEventsTest.java56 final AnimatorSet animSet = new AnimatorSet(); in testPlayingCancelDuringChildDelay() local
57 animSet.playSequentially(xAnim, yAnim); in testPlayingCancelDuringChildDelay()
64 animSet.addListener(mFutureListener); in testPlayingCancelDuringChildDelay()
66 animSet.start(); in testPlayingCancelDuringChildDelay()
67 handler.postDelayed(new Canceler(animSet, mFuture), ANIM_DURATION + 250); in testPlayingCancelDuringChildDelay()
/frameworks/base/core/java/com/android/internal/transition/
DEpicenterTranslateClipReveal.java241 final AnimatorSet animSet = new AnimatorSet(); in createRectAnimator() local
242 animSet.playTogether(animX, animY, animZ); in createRectAnimator()
243 animSet.addListener(animatorListener); in createRectAnimator()
244 return animSet; in createRectAnimator()
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
DMediaRouteControllerDialog.java828 AnimationSet animSet = new AnimationSet(true); in animateGroupListItemsInternal() local
833 animSet.addAnimation(alphaAnim); in animateGroupListItemsInternal()
837 animSet.addAnimation(translationAnim); in animateGroupListItemsInternal()
838 animSet.setFillAfter(true); in animateGroupListItemsInternal()
839 animSet.setFillEnabled(true); in animateGroupListItemsInternal()
840 animSet.setInterpolator(mInterpolator); in animateGroupListItemsInternal()
843 animSet.setAnimationListener(listener); in animateGroupListItemsInternal()
846 view.startAnimation(animSet); in animateGroupListItemsInternal()
960 AnimationSet animSet = new AnimationSet(true); in clearGroupListAnimation() local
963 animSet.addAnimation(alphaAnim); in clearGroupListAnimation()
[all …]
/frameworks/base/core/java/android/widget/
DFastScroller.java1578 AnimatorSet animSet = new AnimatorSet(); in groupAnimatorOfFloat() local
1584 builder = animSet.play(anim); in groupAnimatorOfFloat()
1590 return animSet; in groupAnimatorOfFloat()