如何为Android自定义键盘中的每个键设置不同的键背景

时间:2013-08-12 12:57:46

标签: android android-softkeyboard

我正在使用自定义键盘,我需要在运行时或动态地为每个键设置不同的图像,但我不知道如何执行此操作。

我正在使用此代码:

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

因为我必须在这里动态更改图像背景,但我不知道如何做到这一点。

1 个答案:

答案 0 :(得分:2)

后来发布了一个重复的问题 how to change key background of any key in Android soft keyboard。它有一些很好的答案。