SIM PIN: Fix layout issues

The height of the parent views could limit the overall size of the
security views. Remove the limit.

Fixes: 178412096
Test: manually tested by reporter, not locally reproducible

Change-Id: I8e450940bc3e06d64865b52d2c3992efbfda7cc4
This commit is contained in:
Matt Pietal
2021-01-29 13:16:30 -05:00
parent 7ee87037f5
commit e56ac3523c
2 changed files with 2 additions and 4 deletions

View File

@@ -32,9 +32,8 @@
<com.android.keyguard.KeyguardSecurityContainer
android:id="@+id/keyguard_security_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
androidprv:layout_maxHeight="@dimen/keyguard_security_max_height"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false"
android:clipToPadding="false"
android:padding="0dp"

View File

@@ -46,7 +46,6 @@
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_weight="1"
android:layoutDirection="ltr"
>
<include layout="@layout/keyguard_esim_area"