私はカスタム キーボードに取り組んでおり、実行時または動的にキーごとに異なるイメージを設定する必要がありますが、これを行う方法がわかりません。
私はこのコードを使用しています:
<com.keyboard.KeyBoard.LatinKeyboardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/com.keyboard.KeyBoard"
android:id="@+id/keyboard"
android:keyBackground="@drawable/black_bg"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:focusable="true"
android:background="@android:color/black"
android:focusableInTouchMode="true" />
そして今、android:keyBackground="@drawable/black_bg"
属性を取得したい:
@Override
public void onStartInputView(EditorInfo attribute, boolean restarting) {
super.onStartInputView(attribute, restarting);
}
ここでキーの画像の背景を動的に変更する必要があるため、これを行う方法がわかりません。