diff options
| author | 2024-01-16 12:45:11 +0000 | |
|---|---|---|
| committer | 2024-01-23 09:13:41 +0000 | |
| commit | ec9938a3ecbc742193cd3086c558f275c8d958ee (patch) | |
| tree | 817597e112662b1818dbadb776c7ad701c921f56 | |
| parent | c219f435b4ed0cbdb36e5bd55acac78fefc856b3 (diff) | |
Fix after changing the screen resolution to full resolution, the
fingerprint icon in the biometric prompt will become smaller
To define biometrics fingerprint icon size in values-xxxhdpi for
device full resolution.
Bug: 315238420
Test: manually check UI
Change-Id: I28da851ff1b507abdfa8c6fe29861d53c7c6ea3a
| -rw-r--r-- | packages/SystemUI/res/values-xxhdpi/dimens.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/SystemUI/res/values-xxhdpi/dimens.xml b/packages/SystemUI/res/values-xxhdpi/dimens.xml index 26c84371c445..9bff422aec12 100644 --- a/packages/SystemUI/res/values-xxhdpi/dimens.xml +++ b/packages/SystemUI/res/values-xxhdpi/dimens.xml @@ -22,4 +22,8 @@ fraction of a pixel.--> <fraction name="battery_subpixel_smoothing_left">33%</fraction> <fraction name="battery_subpixel_smoothing_right">33%</fraction> + + <!-- Biometrics fingerprint icon size for full resolution.--> + <dimen name="biometric_dialog_fingerprint_icon_width">120dp</dimen> + <dimen name="biometric_dialog_fingerprint_icon_height">120dp</dimen> </resources> |