我正在android中构建一个自定义键盘。
我的 input.xml:
<com.mykeyboard.MyKeyboardView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/keyboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:keyBackground="@drawable/keybg"
/>
所有的键都具有相同的背景。现在我正在尝试动态更改一个键的背景。这可能吗?
我的自定义 MyKeyboardView 的代码可以在这里找到:http: //pastebin.com/ZpLzZZUj
我的 MyKeyboardService 的代码可以在这里找到:http: //pastebin.com/HYPGFTfg