diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2010-04-01 15:46:27 -0700 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2011-05-20 16:23:36 -0700 |
commit | 1e4cfbeba54898373c852097d1519a1d966c0854 (patch) | |
tree | 5f67e101f693fca090ff6c8b49cc3cfde16831b1 /tests/BiDiTests/AndroidManifest.xml | |
parent | 1714c21c15b83e555cb6cd47019145eecf5e8871 (diff) | |
download | frameworks_base-1e4cfbeba54898373c852097d1519a1d966c0854.zip frameworks_base-1e4cfbeba54898373c852097d1519a1d966c0854.tar.gz frameworks_base-1e4cfbeba54898373c852097d1519a1d966c0854.tar.bz2 |
RTL Ordering of visual elements in LinearLayout
- also update unit tests for testing LinearLayout
Change-Id: I0794d48c45a8fd4a899fdf6f6a1d05485b416e1a
Diffstat (limited to 'tests/BiDiTests/AndroidManifest.xml')
-rw-r--r-- | tests/BiDiTests/AndroidManifest.xml | 39 |
1 files changed, 32 insertions, 7 deletions
diff --git a/tests/BiDiTests/AndroidManifest.xml b/tests/BiDiTests/AndroidManifest.xml index 727f980..8a77519 100644 --- a/tests/BiDiTests/AndroidManifest.xml +++ b/tests/BiDiTests/AndroidManifest.xml @@ -14,24 +14,49 @@ limitations under the License. --> -<!-- Declare the contents of this Android application. The namespace - attribute brings in the Android platform namespace, and the package - supplies a unique name for the application. When writing your - own application, the package name must be changed from "com.example.*" - to come from a domain that you own or have control over. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.bidi" android:versionCode="1" android:versionName="1.0"> <application android:label="BiDiTests"> - <activity android:name="BiDiTestActivity" - android:windowSoftInputMode="stateAlwaysHidden"> + + <activity android:name=".BiDiTestActivity" + android:windowSoftInputMode="stateAlwaysHidden"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> + <activity android:name=".BiDiTestBasicActivity" + android:windowSoftInputMode="stateAlwaysHidden"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + </intent-filter> + </activity> + + <activity android:name=".BiDiTestCanvasActivity" + android:windowSoftInputMode="stateAlwaysHidden"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + </intent-filter> + </activity> + + <activity android:name=".BiDiTestLinearLayoutLtrActivity" + android:windowSoftInputMode="stateAlwaysHidden"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + </intent-filter> + </activity> + + <activity android:name=".BiDiTestLinearLayoutRtlActivity" + android:windowSoftInputMode="stateAlwaysHidden"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + </intent-filter> + </activity> + </application> + </manifest>
\ No newline at end of file |