Searched refs:AnimatorUtils (Results 1 – 12 of 12) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | MoveScreensaverRunnable.kt | 93 mActiveAnimator = AnimatorUtils.getAlphaAnimator(mSaverView, 0f, 1f) in run() 106 hide.play(AnimatorUtils.getAlphaAnimator(mSaverView, 1f, 0f)) in run() 107 .with(AnimatorUtils.getScaleAnimator(mSaverView, 1f, 0.85f)) in run() 113 show.play(AnimatorUtils.getAlphaAnimator(mSaverView, 0f, 1f)) in run() 114 .with(AnimatorUtils.getScaleAnimator(mSaverView, 0.85f, 1f)) in run()
|
D | DeskClock.kt | 207 val hideFabAnimation = AnimatorUtils.getScaleAnimator(mFab, 1f, 0f) in onCreate() 208 val showFabAnimation = AnimatorUtils.getScaleAnimator(mFab, 0f, 1f) in onCreate() 210 val leftHideAnimation = AnimatorUtils.getScaleAnimator(mLeftButton, 1f, 0f) in onCreate() 211 val rightHideAnimation = AnimatorUtils.getScaleAnimator(mRightButton, 1f, 0f) in onCreate() 212 val leftShowAnimation = AnimatorUtils.getScaleAnimator(mLeftButton, 0f, 1f) in onCreate() 213 val rightShowAnimation = AnimatorUtils.getScaleAnimator(mRightButton, 0f, 1f) in onCreate()
|
D | BaseActivity.kt | 83 mAppColorAnimator = ValueAnimator.ofObject(AnimatorUtils.ARGB_EVALUATOR, in adjustAppColor()
|
D | DropShadowController.kt | 46 AnimatorUtils.getAlphaAnimator(mDropShadowView, 0f, 1f)
|
D | AnimatorUtils.kt | 41 object AnimatorUtils { in <lambda>() object
|
D | ItemAnimator.kt | 126 moveAnimator.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in animateMove()
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/ |
D | ExpandedAlarmViewHolder.kt | 42 import com.android.deskclock.AnimatorUtils in <lambda>() 240 animatorSet.playTogether(AnimatorUtils.getBoundsAnimator(itemView, in <lambda>() 265 animatorSet.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in <lambda>() 292 AnimatorUtils.setBackgroundAlpha(itemView, if (isExpanding) 0 else 255) in <lambda>() 302 AnimatorUtils.setBackgroundAlpha(itemView, 255) in <lambda>() 326 PropertyValuesHolder.ofInt(AnimatorUtils.BACKGROUND_ALPHA, 255, 0)) in <lambda>() 329 val boundsAnimator: Animator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView) in <lambda>() 331 boundsAnimator.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in <lambda>() 385 val boundsAnimator: Animator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView) in <lambda>() 387 boundsAnimator.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in <lambda>() [all …]
|
D | CollapsedAlarmViewHolder.kt | 31 import com.android.deskclock.AnimatorUtils in <lambda>() 184 val boundsAnimator: Animator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView) in <lambda>() 186 boundsAnimator.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in <lambda>() 207 val boundsAnimator: Animator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView) in <lambda>() 209 boundsAnimator.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in <lambda>() 224 arrowAnimation.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in <lambda>() 230 AnimatorUtils.startDrawableAnimation(arrow) in <lambda>()
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
D | AlarmActivity.kt | 55 import com.android.deskclock.AnimatorUtils 203 mAlarmAnimator = AnimatorUtils.getScaleAnimator(mAlarmButton, 1.0f, 0.0f) in onCreate() 208 PropertyValuesHolder.ofObject(CircleView.FILL_COLOR, AnimatorUtils.ARGB_EVALUATOR, in onCreate() 387 AnimatorUtils.reverse(mAlarmAnimator, mSnoozeAnimator, mDismissAnimator) in onTouch() 538 AnimatorUtils.setAnimatedFraction(mAlarmAnimator, alarmFraction) in setAnimatedFractions() 539 AnimatorUtils.setAnimatedFraction(mSnoozeAnimator, snoozeFraction) in setAnimatedFractions() 540 AnimatorUtils.setAnimatedFraction(mDismissAnimator, dismissFraction) in setAnimatedFractions() 551 PropertyValuesHolder.ofInt(AnimatorUtils.BACKGROUND_ALPHA, 0, 255), in getButtonAnimator() 552 PropertyValuesHolder.ofInt(AnimatorUtils.DRAWABLE_ALPHA, in getButtonAnimator() 554 PropertyValuesHolder.ofObject(AnimatorUtils.DRAWABLE_TINT, in getButtonAnimator() [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/ringtone/ |
D | RingtoneViewHolder.kt | 31 import com.android.deskclock.AnimatorUtils 72 AnimatorUtils.startDrawableAnimation(mImageView) in onBindItemView()
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerFragment.kt | 45 import com.android.deskclock.AnimatorUtils 271 AnimatorUtils.startDrawableAnimation(fab) in onMorphFab() 516 translationAnimatorSet.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in animateToView()
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
D | StopwatchFragment.kt | 50 import com.android.deskclock.AnimatorUtils in <lambda>() 260 AnimatorUtils.startDrawableAnimation(fab) in <lambda>()
|