diff options
| author | 2024-02-14 21:24:41 +0000 | |
|---|---|---|
| committer | 2024-02-20 21:15:26 +0000 | |
| commit | 7597679e2946bf43e9e52409884c3c93a7541e01 (patch) | |
| tree | 85c10e5a2b7411cdb79ad8ce6b1532787806455a | |
| parent | 77c6fd2c11f1b7166a8ca93b6243038e13192475 (diff) | |
[A11y] Fix text clipped for back botton in helper dialog.
Test: CTS
Fix: 322856112
Change-Id: I2973c102db93ebfe3bbf51211d153d077159ff21
| -rw-r--r-- | packages/CompanionDeviceManager/res/values/styles.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/CompanionDeviceManager/res/values/styles.xml b/packages/CompanionDeviceManager/res/values/styles.xml index 88f1204641ff..0af108052137 100644 --- a/packages/CompanionDeviceManager/res/values/styles.xml +++ b/packages/CompanionDeviceManager/res/values/styles.xml @@ -59,8 +59,10 @@ <style name="VendorHelperBackButton" parent="@android:style/Widget.Material.Button.Borderless.Colored"> - <item name="android:layout_width">70dp</item> + <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">48dp</item> + <item name="android:layout_marginStart">12dp</item> + <item name="android:layout_marginEnd">12dp</item> <item name="android:textAllCaps">false</item> <item name="android:textSize">14sp</item> <item name="android:textColor">@android:color/system_neutral1_900</item> |