我想通过软键盘更改输入文本的颜色,这可能是InputConnection
我BaseInputConnection
个人制作的:
public class k extends BaseInputConnection{
Keying ke;
public k(View targetView, boolean fullEditor) {
super(targetView, fullEditor);
// TODO Auto-generated constructor stub
}
}
但是在扩展的类中InputMethodService
我无法创建对象。因为在构造函数中BaseInputConnection
需要 aView
和 a boolean
。
我如何使用该类InputMethodService
并控制它的属性。任何人都可以帮助我并提供一些代码建议吗?