Home
last modified time | relevance | path

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

/packages/apps/Camera2/src/com/android/camera/widget/
DVideoRecordingHints.java56 private final ValueAnimator mRotationAnimation; field in VideoRecordingHints
155 mRotationAnimation = ValueAnimator.ofFloat(mRotation, mRotation + ROTATION_DEGREES); in VideoRecordingHints()
156 mRotationAnimation.setDuration(ROTATION_DURATION_MS); in VideoRecordingHints()
157 mRotationAnimation.setStartDelay(PORTRAIT_ROTATE_DELAY_MS); in VideoRecordingHints()
158 mRotationAnimation.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in VideoRecordingHints()
166 mRotationAnimation.addListener(new RotationAnimatorListener(this)); in VideoRecordingHints()
180 if (mRotationAnimation.isRunning()) { in continueRotationAnimation()
183 mRotationAnimation.setFloatValues(mRotation, mRotation + ROTATION_DEGREES); in continueRotationAnimation()
184 mRotationAnimation.start(); in continueRotationAnimation()
193 mRotationAnimation.cancel(); in onVisibilityChanged()
[all …]