- Forum posts: 1
Nov 30, 2015, 8:04:32 PM via Website
Nov 30, 2015 8:04:32 PM via Website
I'm trying to change a key icon on press in run time:
@Override
public void onPress(int primaryCode) {
Keyboard currentKeyboard = KbView.getKeyboard();
List<Keyboard.Key> keys = currentKeyboard.getKeys();
KbView.invalidateKey(primaryCode);
keys.get(primaryCode).label = null;
keys.get(primaryCode).icon = R.drawable.image;
}
However, the last line says:
Incompatible types.
Required: android.graphics.drawable.Drawable
Found: int
If I use instead: keys.get(ponto).icon = getResources().getDrawable(R.drawable.image); says that getDrawable(int) is deprecated. (It works, but when I press a key, change the icon of other key)
(I'm using API level 8)