Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/alarms/
DAlarmActivity.kt125 private lateinit var mPulseAnimator: ValueAnimator variable in com.android.deskclock.alarms.AlarmActivity
206 mPulseAnimator = ObjectAnimator.ofPropertyValuesHolder(pulseView, in onCreate()
210 mPulseAnimator.setDuration(PULSE_DURATION_MILLIS.toLong()) in onCreate()
211 mPulseAnimator.setInterpolator(PULSE_INTERPOLATOR) in onCreate()
212 mPulseAnimator.setRepeatCount(ValueAnimator.INFINITE) in onCreate()
213 mPulseAnimator.start() in onCreate()
334 mPulseAnimator.setRepeatCount(0) in onTouch()
393 mPulseAnimator.setRepeatCount(ValueAnimator.INFINITE) in onTouch()
394 if (!mPulseAnimator.isStarted()) { in onTouch()
395 mPulseAnimator.start() in onTouch()
[all …]