我已经在android studio中为android创建了一个自定义键盘。我做对了所有事情,但是不知道为什么我的键盘没有显示在选择键盘和输入部分。我认为该服务无法正常启动。 请帮助我。我已经附上了一些源文件。
我的清单文件:
SELECT [log_id],[ log_description],[ create_user],[ create_date_time] FROM activity_log
我的键盘课:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hashprompt.newpad">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name=".EDMTKeyboard"
android:label="EDMTKeyboard"
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>
</application>
</manifest>
等待您的答复。