Files
android_development/samples/SoftKeyboard/AndroidManifest.xml
Tadashi G. Takaoka ec1f72d17d Update SoftKeyboard sample to use InputMethodSubtype
Bug: 5475117
Change-Id: I94c70800e272e28c080edd5102adceabf06d7aff
2011-10-19 19:25:50 +09:00

20 lines
790 B
XML
Executable File

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.softkeyboard">
<application android:label="@string/ime_name">
<service android:name="SoftKeyboard"
android:permission="android.permission.BIND_INPUT_METHOD">
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
<meta-data android:name="android.view.im" android:resource="@xml/method" />
</service>
<activity android:name=".ImePreferences" android:label="@string/settings_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
</application>
</manifest>