3

私はカスタム キーボードに取り組んでおり、実行時または動的にキーごとに異なるイメージを設定する必要がありますが、これを行う方法がわかりません。

私はこのコードを使用しています:

<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);   
}

ここでキーの画像の背景を動的に変更する必要があるため、これを行う方法がわかりません。

4

1 に答える 1

2

Android ソフト キーボードの任意のキーのキー背景を変更する方法に投稿された重複した質問が後でありました 。いくつかの良い答えがありました。

于 2014-03-21T01:43:04.250 に答える