1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.example.android.softkeyboard"> 3 <application android:label="@string/ime_name"> 4 <service android:name="SoftKeyboard" 5 android:permission="android.permission.BIND_INPUT_METHOD"> 6 <intent-filter> 7 <action android:name="android.view.InputMethod" /> 8 </intent-filter> 9 <meta-data android:name="android.view.im" android:resource="@xml/method" /> 10 </service> 11 12 <activity android:name=".ImePreferences" android:label="@string/settings_name"> 13 <intent-filter> 14 <action android:name="android.intent.action.MAIN"/> 15 </intent-filter> 16 </activity> 17 18 </application> 19</manifest> 20