OSDN Git Service

Fix default level flags for bidi. [DO NOT MERGE]
authorDeepanshu Gupta <deepanshu@google.com>
Thu, 10 Jul 2014 01:10:34 +0000 (18:10 -0700)
committerDeepanshu Gupta <deepanshu@google.com>
Sat, 12 Jul 2014 02:10:02 +0000 (02:10 +0000)
Bug: b.android.com/69432
Change-Id: I26ff34a6d1f85c928a9a1cb3dfd739fc7d3a8fb6
(cherry picked from commit 95e636130dfc2c0203f16f5315a7fe14b03eb689)

tools/layoutlib/bridge/src/android/text/AndroidBidi_Delegate.java

index 973fa0e..d9f4764 100644 (file)
@@ -40,10 +40,10 @@ public class AndroidBidi_Delegate {
         case 1: // Layout.DIR_REQUEST_RTL
             break;  // No change.
         case -1:
-            dir = Bidi.LEVEL_DEFAULT_LTR;
+            dir = Bidi.LEVEL_DEFAULT_RTL;
             break;
         case -2:
-            dir = Bidi.LEVEL_DEFAULT_RTL;
+            dir = Bidi.LEVEL_DEFAULT_LTR;
             break;
         default:
             // Invalid code. Log error, assume LEVEL_DEFAULT_LTR and continue.