Searched refs:animatorSet (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Car/Radio/src/com/android/car/radio/
H A DRadioPresetsFragment.java152 AnimatorSet animatorSet = new AnimatorSet();
153 animatorSet.playTogether(containerAlphaAnimator, presetListAlphaAnimator);
154 animatorSet.start();
199 AnimatorSet animatorSet = new AnimatorSet();
200 animatorSet.playTogether(containerAlphaAnimator, presetListAlphaAnimator);
201 animatorSet.start();
H A DRadioAnimationManager.java224 AnimatorSet animatorSet = new AnimatorSet();
225 animatorSet.playTogether(cornerRadiusAnimator, heightAnimator, widthAnimator, fabAnimator,
228 animatorSet.addListener(new Animator.AnimatorListener() {
247 animatorSet.start();
406 AnimatorSet animatorSet = new AnimatorSet();
407 animatorSet.playTogether(cornerRadiusAnimator, heightAnimator, widthAnimator, fabAnimator,
410 animatorSet.start();
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
H A DTwoButtonMethod.java206 AnimatorSet animatorSet = new AnimatorSet();
207 animatorSet.play(animator).with(createViewHideAnimation());
208 animatorSet.start();
230 AnimatorSet animatorSet = new AnimatorSet();
231 animatorSet.play(animator).with(createViewHideAnimation());
232 animatorSet.start();
H A DFlingUpDownMethod.java1095 private void addVibrationAnimator(AnimatorSet animatorSet) { argument
1108 animatorSet.play(vibrationAnimator).after(0 /* delay */);
/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
H A DCollapsedAlarmViewHolder.java203 final AnimatorSet animatorSet = new AnimatorSet();
204 animatorSet.playTogether(alphaAnimatorSet, boundsAnimator);
205 return animatorSet;
241 final AnimatorSet animatorSet = new AnimatorSet();
242 animatorSet.playTogether(alphaAnimatorSet, boundsAnimator, arrowAnimation);
243 animatorSet.addListener(new AnimatorListenerAdapter() {
249 return animatorSet;
H A DExpandedAlarmViewHolder.java273 final AnimatorSet animatorSet = new AnimatorSet();
274 animatorSet.playTogether(AnimatorUtils.getBoundsAnimator(itemView,
286 animatorSet.addListener(new AnimatorListenerAdapter() {
295 animatorSet.setDuration(duration);
296 animatorSet.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN);
298 return animatorSet;
403 final AnimatorSet animatorSet = new AnimatorSet();
404 animatorSet.playTogether(backgroundAnimator, boundsAnimator, repeatAnimation,
407 return animatorSet;
479 final AnimatorSet animatorSet
[all...]
/packages/apps/ExactCalculator/src/com/android/calculator2/
H A DCalculator.java957 final AnimatorSet animatorSet = new AnimatorSet();
958 animatorSet.playTogether(
963 animatorSet.setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime));
964 animatorSet.setInterpolator(new AccelerateDecelerateInterpolator());
965 animatorSet.start();
1067 final AnimatorSet animatorSet = new AnimatorSet();
1068 animatorSet.play(revealAnimator).before(alphaAnimator);
1069 animatorSet.setInterpolator(new AccelerateDecelerateInterpolator());
1070 animatorSet.addListener(new AnimatorListenerAdapter() {
1078 mCurrentAnimator = animatorSet;
[all...]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/anim/
H A DBenefitsAnimation.java198 AnimatorSet animatorSet = new AnimatorSet();
199 animatorSet.playTogether(animators);
200 return animatorSet;
/packages/apps/Launcher3/src/com/android/launcher3/folder/
H A DFolderAnimationManager.java243 private void addPreviewItemAnimators(AnimatorSet animatorSet, final float folderScale, argument
292 play(animatorSet, translationX);
296 play(animatorSet, translationY);
300 play(animatorSet, scaleAnimator);
316 animatorSet.addListener(new AnimatorListenerAdapter() {
H A DFolder.java753 AnimatorSet animatorSet = LauncherAnimUtils.createAnimatorSet();
754 animatorSet.play(LauncherAnimUtils.ofViewAlphaAndScale(this, 0, 0.9f, 0.9f));
758 animatorSet.addListener(layerSet);
759 animatorSet.setDuration(mExpandDuration);
760 return animatorSet;
/packages/apps/Car/Hvac/src/com/android/car/hvac/controllers/
H A DHvacPanelController.java396 AnimatorSet animatorSet = new AnimatorSet();
397 animatorSet.playTogether(animationList);
399 animatorSet.addListener(listener);
401 animatorSet.addListener(mAnimatorListener);
402 animatorSet.start();
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerFragment.java568 final AnimatorSet animatorSet = new AnimatorSet();
569 animatorSet.play(fadeOut).before(fadeIn);
570 animatorSet.start();
659 final AnimatorSet animatorSet = new AnimatorSet();
660 animatorSet.playTogether(fadeOutAnimator, fadeInAnimator, translationAnimatorSet);
661 animatorSet.addListener(new AnimatorListenerAdapter() {
671 animatorSet.start();
/packages/apps/TV/src/com/android/tv/onboarding/
H A DWelcomeFragment.java742 AnimatorSet animatorSet = new AnimatorSet();
746 animatorSet.playSequentially(hideAnimator,
752 animatorSet.playSequentially(hideAnimator,
759 animatorSet.playSequentially(hideAnimator,
770 animatorSet.addListener(new AnimatorListenerAdapter() {
780 animatorSet.playSequentially(hideAnimator,
794 mAnimator = SetupAnimationHelper.applyAnimationTimeScale(animatorSet);
/packages/apps/Dialer/java/com/android/incallui/answer/impl/
H A DAnswerFragment.java885 AnimatorSet animatorSet = new AnimatorSet();
886 AnimatorSet.Builder builder = animatorSet.play(alpha);
891 animatorSet.setDuration(
893 animatorSet.addListener(
900 animatorSet.start();
/packages/apps/PackageInstaller/src/android/support/wearable/view/
H A DWearableListView.java538 AnimatorSet animatorSet = new AnimatorSet();
539 animatorSet.playTogether(animators);
540 mScrollAnimator = animatorSet;

Completed in 9753 milliseconds