diff options
| author | 2023-06-28 11:07:30 +0000 | |
|---|---|---|
| committer | 2023-06-28 11:07:30 +0000 | |
| commit | c71aaf4549edcf98eb4b691a8f39ca285ff93ff6 (patch) | |
| tree | 802fdeaacbf1a7c40220f4d598d1e32c37d1a65a | |
| parent | 6bb26d3d6d0efbb38835e3c0bbddd43c0c080396 (diff) | |
| parent | be1f8016a25e21fa79fcc2e0b3e6c511b885fe3a (diff) | |
Merge "Make width of the dialog constant even when content changes" into udc-qpr-dev am: bb808ae742 am: be1f8016a2
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23830084
Change-Id: I3570273174ee4db351031edc8c0db7ae6267bb57
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | packages/SettingsLib/res/layout/dialog_with_icon.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SettingsLib/res/layout/dialog_with_icon.xml b/packages/SettingsLib/res/layout/dialog_with_icon.xml index 2f30508ca504..3586dcb2909c 100644 --- a/packages/SettingsLib/res/layout/dialog_with_icon.xml +++ b/packages/SettingsLib/res/layout/dialog_with_icon.xml @@ -33,13 +33,13 @@ android:importantForAccessibility="no"/> <TextView android:id="@+id/dialog_with_icon_title" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" style="@style/DialogWithIconTitle"/> <TextView android:id="@+id/dialog_with_icon_message" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" style="@style/TextAppearanceSmall"/> |