Don't animate large clock appearance on AOD

Just don't do it.

Fixes: 188205862
Test: manual
Change-Id: I0e13658f1bd478dca55203ea5ccf40801859b56e
This commit is contained in:
Matt Pietal
2021-05-14 15:02:13 -04:00
parent 2188e52237
commit acb528f2d7
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ public class AnimatableClockController extends ViewController<AnimatableClockVie
/** Animate the clock appearance */
public void animateAppear() {
mView.animateAppear();
if (!mIsDozing) mView.animateAppearOnLockscreen();
}
/**

View File

@@ -157,7 +157,7 @@ public class AnimatableClockView extends TextView {
mLockScreenColor = lockScreenColor;
}
void animateAppear() {
void animateAppearOnLockscreen() {
if (mTextAnimator == null) {
return;
}