diff options
| author | Xin Li <delphij@google.com> | 2020-09-08 16:55:45 -0700 |
|---|---|---|
| committer | Xin Li <delphij@google.com> | 2020-09-08 16:55:45 -0700 |
| commit | 9da26487860cbc8a80da6113432d556b81b1ab33 (patch) | |
| tree | cd7349c75b671e0c438b0d1df8a42955f5a57e4a /res/values/styles.xml | |
| parent | e301e0126d865e15fc748e773a52746c08f7c8d4 (diff) | |
| parent | 6c9e0e935aff44297389142f7d5a6b40df82d3d3 (diff) | |
| download | platform_packages_apps_Car_Radio-master.tar.gz platform_packages_apps_Car_Radio-master.tar.bz2 platform_packages_apps_Car_Radio-master.zip | |
Bug: 168057903
Merged-In: Ibd7349ce35b843d87e60f6168f7410967eb6c315
Change-Id: I371d22cf104a199aa8ba34671f4e6cc5be30f87b
Diffstat (limited to 'res/values/styles.xml')
| -rw-r--r-- | res/values/styles.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index 635a19f..20001dc 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -18,6 +18,10 @@ limitations under the License. <style name="RadioButton"> <item name="android:background">?android:attr/selectableItemBackground</item> <item name="android:padding">@dimen/radio_controls_button_padding</item> + <!-- Added paddingStart/End explicitly since padding does not override paddingStart/End + when RTL support is enabled --> + <item name="android:paddingStart">@dimen/radio_controls_button_padding</item> + <item name="android:paddingEnd">@dimen/radio_controls_button_padding</item> <item name="android:scaleType">center</item> </style> @@ -27,6 +31,10 @@ limitations under the License. <item name="android:layout_height">@dimen/dialpad_button_size</item> <item name="android:layout_marginBottom">@dimen/dialpad_space_vertical</item> <item name="android:padding">@dimen/dialpad_button_padding</item> + <!-- Added paddingStart/End explicitly since padding does not override paddingStart/End + when RTL support is enabled --> + <item name="android:paddingStart">@dimen/dialpad_button_padding</item> + <item name="android:paddingEnd">@dimen/dialpad_button_padding</item> <item name="android:gravity">center</item> <item name="android:layout_gravity">center</item> <item name="android:background">?android:attr/selectableItemBackground</item> |
