Fix UDFPS enroll to use correct fingerprint icon

Updates the guided enrollment animation to use the correct fingerprint
icon. This fixes an issue where the fingerprint icon appears compressed
during enrollment.

Test: Manual

Fixes: 205193478
Change-Id: I0b1ad8e203e241483cde016ffb6cc084151323b0
This commit is contained in:
Curtis Belmonte
2021-11-05 17:55:33 -07:00
parent cec069482f
commit 743b9c4e06

View File

@@ -115,7 +115,8 @@ public class UdfpsEnrollDrawable extends UdfpsDrawable {
mBlueFill.setColor(context.getColor(R.color.udfps_moving_target_fill));
mBlueFill.setStyle(Paint.Style.FILL);
mMovingTargetFpIcon = context.getResources().getDrawable(R.drawable.ic_fingerprint, null);
mMovingTargetFpIcon = context.getResources()
.getDrawable(R.drawable.ic_kg_fingerprint, null);
mMovingTargetFpIcon.setTint(Color.WHITE);
mMovingTargetFpIcon.mutate();