diff options
author | Yorke Lee <yorkelee@google.com> | 2013-09-03 18:45:51 -0700 |
---|---|---|
committer | Yorke Lee <yorkelee@google.com> | 2013-09-03 18:45:51 -0700 |
commit | b6b060d91dda4e260ac8bfa780a04a0624c8174e (patch) | |
tree | 4935914e02dd2d6feb4aaee5f153cc249275dbfd | |
parent | fca0338d3d52f91c0cbcac555a8416cc75770090 (diff) |
Fix phone number rtl issues in disambig dialog
Bug: 10541171
Change-Id: I0fc3c291b93017f3e1f1fda5697fe7c984bc5171
-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> |