I ma trying to change the keyboardview key color in Android. Key color is changed. But text is not visible in the key.
@Override
public void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
List<Keyboard.Key> keys = getKeyboard().getKeys();
for (Keyboard.Key key : keys) {
if (key.codes[0] == 53) {
Drawable dr = context.getResources().getDrawable(R.drawable.samplekeybackground);
dr.setBounds(key.x, key.y, key.x + key.width, key.y + key.height);
dr.draw(canvas);
}
}
}
samplekeybackground.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Non focused states -->
<item
android:state_focused="false"
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/normal" />
<!-- Pressed state -->
<item
android:state_pressed="true"
android:drawable="@drawable/pressed" /></selector>
normal.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="2dp" android:color="#00FFFFFF" />
<solid android:color="#AABBCC" />
<corners
android:radius="5dp"/>
</shape>
pressed.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="5dp" android:color="#000000" />
<solid android:color="#CCBBAA"/>
<corners
android:radius="5dp"/>
</shape>
Please let me some ideas to resolve this issue.
If we set the bg color programmatically then we need to set the text programmatically.