diff options
author | Yorke Lee <yorkelee@google.com> | 2013-09-04 14:05:46 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-09-04 14:05:47 +0000 |
commit | 1aed2184ac987d2ab42735994bf7aa5047d66e5e (patch) | |
tree | 069abf2a9c7e9074513defe171ea885dcf287396 | |
parent | 8c91efc5091f077d07e6a38fafa0076789e6eb07 (diff) | |
parent | b6b060d91dda4e260ac8bfa780a04a0624c8174e (diff) |
Merge "Fix phone number rtl issues in disambig dialog" into klp-dev
-rwxr-xr-x | res/layout/phone_disambig_item.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/res/layout/phone_disambig_item.xml b/res/layout/phone_disambig_item.xml index 02d596b52..a097ce798 100755 --- a/res/layout/phone_disambig_item.xml +++ b/res/layout/phone_disambig_item.xml @@ -30,11 +30,13 @@ android:textStyle="bold" android:textAppearance="?android:attr/textAppearanceMedium" /> + <!-- Phone number should be displayed ltr --> <TextView android:id="@android:id/text2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="-4dip" - android:textAppearance="?android:attr/textAppearanceSmall" /> + android:textAppearance="?android:attr/textAppearanceSmall" + android:textDirection="ltr" /> </LinearLayout> |