diff options
| author | 2012-02-01 17:21:59 -0800 | |
|---|---|---|
| committer | 2012-02-01 17:21:59 -0800 | |
| commit | 81453f761a21c4d76dfd2f81c8651eab3217b3df (patch) | |
| tree | 72086768f80e42c302018928f639ad097b3e8a51 | |
| parent | bb3968fed8e7fb2b53ac32d40e26e0d21600a922 (diff) | |
| parent | 8a551a53fde27f73b900eb932636f0ba7e4265fc (diff) | |
Merge "Fix bug #5262565 Need to remove CharCount TextDirectionHeuristics"
| -rwxr-xr-x | core/res/res/values/attrs.xml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index b514bf5311cc..16b7ff36d92c 100755 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -2061,7 +2061,7 @@ </attr> <!-- Direction of the text. A heuristic is used to determine the resolved text direction of paragraphs. --> - <attr name="textDirection" format="integer"> + <attr name="textDirection" format="integer"> <!-- Default --> <enum name="inherit" value="0" /> <!-- Default for the root view. The first strong directional character determines the @@ -2072,16 +2072,12 @@ it is LTR if it contains any strong LTR characters. If there are neither, the paragraph direction is the view’s resolved layout direction. --> <enum name="anyRtl" value="2" /> - <!-- The paragraph direction is the same as the one held by a 60% majority of the - characters. If there is no majority then the paragraph direction is the resolved - layout direction of the View. --> - <enum name="charCount" value="3" /> <!-- The paragraph direction is left to right. --> - <enum name="ltr" value="4" /> + <enum name="ltr" value="3" /> <!-- The paragraph direction is right to left. --> - <enum name="rtl" value="5" /> + <enum name="rtl" value="4" /> <!-- The paragraph direction is coming from the system Locale. --> - <enum name="locale" value="6" /> + <enum name="locale" value="5" /> </attr> </declare-styleable> |