質問編集履歴

1

AndroidManifest.xmlのソースをのせました。

2017/09/27 05:14

投稿

Kyome
Kyome

スコア6

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,50 @@
14
14
 
15
15
 
16
16
 
17
+ ```xml
18
+
19
+ <?xml version="1.0" encoding="utf-8"?>
20
+
21
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
+
23
+ android:versionCode="1" android:versionName="1.0"
24
+
25
+ package="com.kyome.DroidCustomKeyboard" android:installLocation="auto">
26
+
27
+ <uses-sdk android:minSdkVersion="23" />
28
+
29
+ <application android:allowBackup="true" android:label="@string/app_name">
30
+
31
+ <service android:name="TestKeyboard" android:label="@string/test_keyboard" android:permission="android.permission.BIND_INPUT_METHOD">
32
+
33
+ <meta-data android:name="android.view.im" android:resource="@xml/method"></meta-data>
34
+
35
+ <intent-filter>
36
+
37
+ <action android:name="android.view.InputMethod"></action>
38
+
39
+ </intent-filter>
40
+
41
+ </service>
42
+
43
+ <!-- <activity android:name="com.kyome.DroidCustomKeyboard.Preferences" android.label="@string/settings_name">
44
+
45
+ <intent-filter>
46
+
47
+ <action android:name="android.intent.action.MAIN"></action>
48
+
49
+ </intent-filter>
50
+
51
+ </activity> -->
52
+
53
+ </application>
54
+
55
+ </manifest>
56
+
57
+ ```
58
+
59
+
60
+
17
61
 
18
62
 
19
63
  ###やってみたこと