Fixes Flash Notification preview button alignment issue in RTL layout

The preview button text is left-aligned in right to left language. Makes
it to be right-aligned with adding layout_gravity=start on the view.

Bug: 276608857
Test: checks the UI manually
Change-Id: I1322c1fcc433670863603c2d0b5438f39ecef998
This commit is contained in:
Angela Wang
2023-04-10 08:34:56 +00:00
parent 3f16621b86
commit 0eeae4f8d0

View File

@@ -34,7 +34,7 @@
android:id="@android:id/title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_vertical"
android:layout_gravity="start|center_vertical"
android:paddingVertical="@dimen/settingslib_switch_title_margin"
android:ellipsize="end"
android:textAppearance="?android:attr/textAppearanceListItem"