我正在创建自定义键盘,text & icon of key
在运行时进行更改,并且我已成功更改text of key
但找不到任何方法来更改icon of key
.
任何帮助,提示将是可观的。
更改密钥文本的代码是:
Keyboard currentKeyboard = CustomKeyboard.mInputView.getKeyboard();
List<Keyboard.Key> keys = currentKeyboard.getKeys();
CustomKeyboard.mInputView.invalidateKey(changeKey);
keys.get(changeKey).label = "Change Text";