Disable IME for CtsActivity and EmojiCtsActivity

In order prevent IME interfering with key based tests disable IME for
CtsActivity and EmojiCtsActivity in AndroidManifest.

Bug: 28346955
Change-Id: I14d58a8757131ef6900ca6c86ae240fab7b15ae7
diff --git a/tests/tests/text/AndroidManifest.xml b/tests/tests/text/AndroidManifest.xml
index 1ff9b4f..4fa3222 100644
--- a/tests/tests/text/AndroidManifest.xml
+++ b/tests/tests/text/AndroidManifest.xml
@@ -25,7 +25,8 @@
 
         <activity android:name="android.text.cts.EmojiCtsActivity"
             android:label="AvailableIntentsActivity"
-            android:screenOrientation="nosensor">
+            android:screenOrientation="nosensor"
+            android:windowSoftInputMode="stateAlwaysHidden">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />
@@ -35,12 +36,12 @@
         <activity android:name="android.text.method.cts.KeyListenerCtsActivity"
             android:label="KeyListenerCtsActivity"
             android:screenOrientation="nosensor"
-            android:windowSoftInputMode="stateAlwaysHidden"
-        />
+            android:windowSoftInputMode="stateAlwaysHidden"/>
 
         <activity android:name="android.text.method.cts.CtsActivity"
             android:label="CtsActivity"
-            android:screenOrientation="nosensor">
+            android:screenOrientation="nosensor"
+            android:windowSoftInputMode="stateAlwaysHidden">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />