diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2012-02-01 17:19:18 -0800 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2012-02-01 17:19:18 -0800 |
commit | 8a551a53fde27f73b900eb932636f0ba7e4265fc (patch) | |
tree | bdef4bf573e4af25e2e0a362fd04432485c09d24 /core/res | |
parent | cf0c7d1031ea213c1b728aca972522afcd4a92c3 (diff) | |
download | frameworks_base-8a551a53fde27f73b900eb932636f0ba7e4265fc.zip frameworks_base-8a551a53fde27f73b900eb932636f0ba7e4265fc.tar.gz frameworks_base-8a551a53fde27f73b900eb932636f0ba7e4265fc.tar.bz2 |
Fix bug #5262565 Need to remove CharCount TextDirectionHeuristics
- was missing a clean of the attrs.xml file
Change-Id: I58155fa624326e8ae11f8b88d8a27d2c44cb467b
Diffstat (limited to 'core/res')
-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 b514bf5..16b7ff3 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> |