diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2013-04-05 21:17:50 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-04-05 21:17:50 +0000 |
commit | c51628aa6f61822c03e13af50741b076c588d3c7 (patch) | |
tree | 954b3b2d2635d257fcc2f92ccd3f8bff5ca72e28 | |
parent | 4a706bc6f1dcf4483b282d5758e22482cf02506f (diff) | |
parent | c238f5195880b2018cfb2ad6e01cad8d425a210c (diff) | |
download | frameworks_base-c51628aa6f61822c03e13af50741b076c588d3c7.zip frameworks_base-c51628aa6f61822c03e13af50741b076c588d3c7.tar.gz frameworks_base-c51628aa6f61822c03e13af50741b076c588d3c7.tar.bz2 |
Merge "Fix AlertDialog in RTL mode" into jb-mr2-dev
-rw-r--r-- | core/res/res/layout/select_dialog.xml | 3 | ||||
-rw-r--r-- | core/res/res/layout/select_dialog_holo.xml | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/core/res/res/layout/select_dialog.xml b/core/res/res/layout/select_dialog.xml index 80d22f6..eb4d8d9 100644 --- a/core/res/res/layout/select_dialog.xml +++ b/core/res/res/layout/select_dialog.xml @@ -32,4 +32,5 @@ android:cacheColorHint="@null" android:divider="?android:attr/listDividerAlertDialog" android:scrollbars="vertical" - android:overScrollMode="ifContentScrolls" /> + android:overScrollMode="ifContentScrolls" + android:textAlignment="viewStart" /> diff --git a/core/res/res/layout/select_dialog_holo.xml b/core/res/res/layout/select_dialog_holo.xml index 06a5d96..8a92283 100644 --- a/core/res/res/layout/select_dialog_holo.xml +++ b/core/res/res/layout/select_dialog_holo.xml @@ -30,4 +30,5 @@ android:cacheColorHint="@null" android:divider="?android:attr/listDividerAlertDialog" android:scrollbars="vertical" - android:overScrollMode="ifContentScrolls" /> + android:overScrollMode="ifContentScrolls" + android:textAlignment="viewStart" /> |