summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Fabrice Di Meglio <fdimeglio@google.com> 2013-03-29 19:38:50 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2013-03-29 19:38:50 +0000
commit3dc52ce711a6345d9f18dd31e39344792116597c (patch)
tree14c6c9eb1ab78f4a18c2e06e675748714c26a626
parent964a6a7e209b0db262c827721ae5fde3f98ca763 (diff)
parent618e3aafdd2f1ae60c9d6a4c47b9928517dbaa62 (diff)
Merge "Fix bug #8505156 WiFi properties dialog is having some issues in RTL mode" into jb-mr2-dev
-rw-r--r--core/res/res/layout-xlarge/activity_list.xml3
-rw-r--r--core/res/res/layout/alert_dialog.xml3
-rw-r--r--core/res/res/layout/alert_dialog_holo.xml3
-rw-r--r--core/res/res/layout/wifi_p2p_dialog_row.xml3
4 files changed, 8 insertions, 4 deletions
diff --git a/core/res/res/layout-xlarge/activity_list.xml b/core/res/res/layout-xlarge/activity_list.xml
index edf6ee6cbcf5..bf46af8f4f37 100644
--- a/core/res/res/layout-xlarge/activity_list.xml
+++ b/core/res/res/layout-xlarge/activity_list.xml
@@ -52,7 +52,8 @@
android:singleLine="true"
android:ellipsize="end"
android:layout_width="match_parent"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:textAlignment="viewStart" />
</LinearLayout>
<View android:id="@+id/titleDivider"
android:layout_width="match_parent"
diff --git a/core/res/res/layout/alert_dialog.xml b/core/res/res/layout/alert_dialog.xml
index 35552d3af650..59e56af01b8d 100644
--- a/core/res/res/layout/alert_dialog.xml
+++ b/core/res/res/layout/alert_dialog.xml
@@ -55,7 +55,8 @@
android:singleLine="true"
android:ellipsize="end"
android:layout_width="match_parent"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:textAlignment="viewStart" />
</LinearLayout>
<ImageView android:id="@+id/titleDivider"
android:layout_width="match_parent"
diff --git a/core/res/res/layout/alert_dialog_holo.xml b/core/res/res/layout/alert_dialog_holo.xml
index 3f1fa3c337b9..34cb21d4f7f5 100644
--- a/core/res/res/layout/alert_dialog_holo.xml
+++ b/core/res/res/layout/alert_dialog_holo.xml
@@ -53,7 +53,8 @@
android:singleLine="true"
android:ellipsize="end"
android:layout_width="match_parent"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:textAlignment="viewStart" />
</LinearLayout>
<View android:id="@+id/titleDivider"
android:layout_width="match_parent"
diff --git a/core/res/res/layout/wifi_p2p_dialog_row.xml b/core/res/res/layout/wifi_p2p_dialog_row.xml
index ef810a05bea8..2c88b1082ae6 100644
--- a/core/res/res/layout/wifi_p2p_dialog_row.xml
+++ b/core/res/res/layout/wifi_p2p_dialog_row.xml
@@ -23,5 +23,6 @@
<TextView
android:id="@+id/value"
style="@style/wifi_item_content"
- android:textStyle="bold" />
+ android:textStyle="bold"
+ android:textAlignment="viewStart" />
</LinearLayout>