diff options
| author | 2024-07-24 16:00:50 +0000 | |
|---|---|---|
| committer | 2024-07-24 16:00:50 +0000 | |
| commit | e1ff5d448a4d4a229b64e0f7a2861850f1ddc47f (patch) | |
| tree | e324b5dd0cc61601aabcc63fe80e8eaf183b7bbe | |
| parent | 469e8ebd0ab0436e2049966af4849e672430d37c (diff) | |
| parent | c17a1074d8877215d86dbad8c9e19e8fafe1eac6 (diff) | |
Merge "Initialize device entry bg view to 0 alpha" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/ui/view/DeviceEntryIconView.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/DeviceEntryIconView.kt b/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/DeviceEntryIconView.kt index 1c6323594c70..3e6d5da38257 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/DeviceEntryIconView.kt +++ b/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/DeviceEntryIconView.kt @@ -247,6 +247,7 @@ constructor( lp.height = ViewGroup.LayoutParams.MATCH_PARENT lp.width = ViewGroup.LayoutParams.MATCH_PARENT bgView.layoutParams = lp + bgView.alpha = 0f } fun getIconState(icon: IconType, aod: Boolean): IntArray { |