diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2014-07-16 15:09:48 -0700 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2014-07-16 22:17:36 +0000 |
commit | 4670a24686f2b5d9323bfbb1ca5bfce5d5d7ceb7 (patch) | |
tree | 19bca890c02f015a5e889096373d6434e38f4099 | |
parent | a51cab9288fea0a8c8ce9a4ccdb834a11984b32c (diff) | |
download | frameworks_base-4670a24686f2b5d9323bfbb1ca5bfce5d5d7ceb7.zip frameworks_base-4670a24686f2b5d9323bfbb1ca5bfce5d5d7ceb7.tar.gz frameworks_base-4670a24686f2b5d9323bfbb1ca5bfce5d5d7ceb7.tar.bz2 |
Fix #16348486 [RTL] Checkboxes are improperly aligned
- use "end" instead of "right" for gravity
Change-Id: I2f8840094b7ac6daeff55bcb457b6c3fa9dc2001
-rw-r--r-- | core/res/res/layout/preference_material.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/res/res/layout/preference_material.xml b/core/res/res/layout/preference_material.xml index a959913..3919f5f 100644 --- a/core/res/res/layout/preference_material.xml +++ b/core/res/res/layout/preference_material.xml @@ -71,7 +71,7 @@ android:layout_width="wrap_content" android:layout_height="match_parent" android:minWidth="58dip" - android:gravity="right|center_vertical" + android:gravity="end|center_vertical" android:orientation="vertical" /> </LinearLayout> |