Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/
DItemAnimator.kt112 val moveAnimator: ObjectAnimator? in animateMove() constant
116 moveAnimator = ObjectAnimator.ofPropertyValuesHolder(holder.itemView, moveX, moveY) in animateMove()
119 moveAnimator = ObjectAnimator.ofPropertyValuesHolder(holder.itemView, moveX) in animateMove()
122 moveAnimator = ObjectAnimator.ofPropertyValuesHolder(holder.itemView, moveY) in animateMove()
125 moveAnimator?.duration = moveDuration in animateMove()
126 moveAnimator.interpolator = AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN in animateMove()
127 moveAnimator.addListener(object : AnimatorListenerAdapter() { in animateMove()
140 mMoveAnimatorsList.add(moveAnimator) in animateMove()
141 mAnimators[holder] = moveAnimator in animateMove()