summaryrefslogtreecommitdiffstats
path: root/tests/BiDiTests
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2012-04-02 16:17:20 -0700
committerFabrice Di Meglio <fdimeglio@google.com>2012-04-03 11:43:20 -0700
commit59dfce8bdaf011337530a0dbec7f7280871f9bc9 (patch)
tree4f495920f4198c482cc061dffbd72b9eca203a69 /tests/BiDiTests
parent4a5268857eaa28be82ac6766bdfb8affad5c0bab (diff)
downloadframeworks_base-59dfce8bdaf011337530a0dbec7f7280871f9bc9.zip
frameworks_base-59dfce8bdaf011337530a0dbec7f7280871f9bc9.tar.gz
frameworks_base-59dfce8bdaf011337530a0dbec7f7280871f9bc9.tar.bz2
Fix bug #6140391 Make RTL awareness as an opt-in into the AndroidManifest
- introduce "supportsRtl" as a new application attribute in the AndroidManifest - "supportsRtl" default value is FALSE (no RTL support) - adapt the View layoutDirection and textDirection logic to take care of "supportsRtl" value Change-Id: I5e4f9f576e14f35dedc6b0c29a7142c397f598e0
Diffstat (limited to 'tests/BiDiTests')
-rw-r--r--tests/BiDiTests/AndroidManifest.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/BiDiTests/AndroidManifest.xml b/tests/BiDiTests/AndroidManifest.xml
index c60edd8..4aead81 100644
--- a/tests/BiDiTests/AndroidManifest.xml
+++ b/tests/BiDiTests/AndroidManifest.xml
@@ -19,7 +19,9 @@
android:versionCode="1"
android:versionName="1.0">
- <application android:label="BiDiTests" android:hardwareAccelerated="true">
+ <application android:label="BiDiTests"
+ android:hardwareAccelerated="true"
+ android:supportsRtl="true" >
<activity android:name=".BiDiTestActivity"
android:windowSoftInputMode="stateAlwaysHidden">