commit | 27a52f5055486ca5e8325da96fe162903e2adbbf | [log] [tgz] |
---|---|---|
author | Grace Cheng <graciecheng@google.com> | Fri Sep 30 00:19:06 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Sep 30 00:19:06 2022 +0000 |
tree | 16b04c0890bd988f06aa4e7c073d2483ba25a275 | |
parent | 95d0ec1b00ee15686cf889c3b8ec83a6a66a5add [diff] | |
parent | 3ebab337b950449557bbad38ce48298e7c4c40fa [diff] |
Merge "Fixes DT enrollment asset showing in light mode" into tm-qpr-dev am: 6b27a8bb70 am: 3ebab337b9 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/20083884 Change-Id: Ib76f9b2f4196b5de281285639dc29b07a99b0356 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/src/com/android/settings/biometrics/fingerprint/FingerprintEnrollFindSensor.java b/src/com/android/settings/biometrics/fingerprint/FingerprintEnrollFindSensor.java index bb03ee4..f4576a2 100644 --- a/src/com/android/settings/biometrics/fingerprint/FingerprintEnrollFindSensor.java +++ b/src/com/android/settings/biometrics/fingerprint/FingerprintEnrollFindSensor.java
@@ -168,8 +168,6 @@ private void updateSfpsFindSensorAnimationAsset() { mIllustrationLottie = findViewById(R.id.illustration_lottie); - LottieColorUtils.applyDynamicColors(getApplicationContext(), mIllustrationLottie); - mIllustrationLottie.setVisibility(View.VISIBLE); final int rotation = getApplicationContext().getDisplay().getRotation(); switch (rotation) { @@ -190,6 +188,9 @@ R.raw.fingerprint_edu_lottie_landscape_top_right); break; } + + LottieColorUtils.applyDynamicColors(getApplicationContext(), mIllustrationLottie); + mIllustrationLottie.setVisibility(View.VISIBLE); mIllustrationLottie.playAnimation(); }