commit | 07ebb705d6fa456cd72a387cfe4bfc7b31abd82d | [log] [tgz] |
---|---|---|
author | Himanshu Gupta <himanshuz@google.com> | Sun Mar 03 20:19:04 2024 +0000 |
committer | Himanshu Gupta <himanshuz@google.com> | Sun Mar 03 21:14:16 2024 +0000 |
tree | 4991755e4dfa0404e18717812a1a427ec5cd62b1 | |
parent | 742f710168097a4498db05e78c29da27b2b3d858 [diff] |
Fixing Layout height for Private Space container Screenshot at max Font, max Display Size: Before: https://screenshot.googleplex.com/BwtrU5xE5h63RKZ.png After: https://photos.app.goo.gl/RXTvE6rM6PUx9wRK7 Bug: 311343337 Change-Id: I565c0c430b56e14f0fb1863b37c835c59c032730 Test: Manual
diff --git a/res/layout/private_space_header.xml b/res/layout/private_space_header.xml index 0b0af87..2b5db48 100644 --- a/res/layout/private_space_header.xml +++ b/res/layout/private_space_header.xml
@@ -87,7 +87,8 @@ <TextView android:id="@+id/ps_container_header" android:layout_width="wrap_content" - android:layout_height="@dimen/ps_header_text_height" + android:layout_height="wrap_content" + android:minHeight="@dimen/ps_header_text_height" android:layout_alignParentStart="true" android:layout_centerVertical="true" android:layout_toStartOf="@+id/settingsAndLockGroup"