diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2013-11-06 15:44:52 -0800 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2013-11-06 15:44:52 -0800 |
commit | 48a4b0fa6a0bf1d4e67de8635fb08b787d56de97 (patch) | |
tree | d7e289e7edfd0da211eac0ae2daf611aed761ac0 /core | |
parent | be0b05a028ebc1b49ed32b79d53af384106c31a3 (diff) | |
download | frameworks_base-48a4b0fa6a0bf1d4e67de8635fb08b787d56de97.zip frameworks_base-48a4b0fa6a0bf1d4e67de8635fb08b787d56de97.tar.gz frameworks_base-48a4b0fa6a0bf1d4e67de8635fb08b787d56de97.tar.bz2 |
Improve RTL support for Immersive mode
- use start/end instead of left/ritgh padding
- related to bug #11537133 Hideycling looks broken (KOT36), missing left padding
Change-Id: I0d8e1de560dbf142a3c016ab6d6784361d88d32a
Diffstat (limited to 'core')
-rw-r--r-- | core/res/res/layout/immersive_mode_cling.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/res/layout/immersive_mode_cling.xml b/core/res/res/layout/immersive_mode_cling.xml index f97225e..c0cd93d 100644 --- a/core/res/res/layout/immersive_mode_cling.xml +++ b/core/res/res/layout/immersive_mode_cling.xml @@ -37,8 +37,8 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/cling_bg" - android:paddingLeft="14dp" - android:paddingRight="14dp" + android:paddingStart="14dp" + android:paddingEnd="14dp" android:paddingTop="24dp" android:paddingBottom="24dp"> <TextView |