我使用 android 键盘,但我想添加一排键,所以我从https://android.googlesource.com/platform/packages/inputmethods/LatinIME/下载了这个键盘的源代码,但我面临以下错误
导入com.android.inputmethodcommon 无法解析
import com.android.inputmethodcommon.InputMethodSettingsFragment;
我使用 android 键盘,但我想添加一排键,所以我从https://android.googlesource.com/platform/packages/inputmethods/LatinIME/下载了这个键盘的源代码,但我面临以下错误
导入com.android.inputmethodcommon 无法解析
import com.android.inputmethodcommon.InputMethodSettingsFragment;
您可以在 Android 中创建自己的自定义键盘以显示任何数字或键。使用Keyboard
,Keyboard.Row
和Keyboard.Key
有关键盘的更多自定义,请查看此博客文章。
我不知道你是否还需要这方面的帮助,但你不需要 imePreferences 文件,你可以删除它。您想转到 xml 文件夹和 qwerty.xml 文件,您可以在其中添加和更改行和键。只需使用您想要的键添加一行。
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="10%p"
android:horizontalGap="0px"
android:verticalGap="0px"
android:keyHeight="@dimen/key_height"
>
<Row>
<Key android:codes="113" android:keyLabel="q" android:keyEdgeFlags="left"/>
<Key android:codes="119" android:keyLabel="w"/>
<Key android:codes="101" android:keyLabel="e"/>
<Key android:codes="114" android:keyLabel="r"/>
<Key android:codes="116" android:keyLabel="t"/>
<Key android:codes="121" android:keyLabel="y"/>
<Key android:codes="117" android:keyLabel="u"/>
<Key android:codes="105" android:keyLabel="i"/>
<Key android:codes="111" android:keyLabel="o"/>
<Key android:codes="112" android:keyLabel="p" android:keyEdgeFlags="right"/>
</Row>