作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将扩展 InputMethodService 的自定义软键盘与另一个服务连接起来。我需要从通用服务调用我的软键盘中的方法。
问题是我无法扩展 Binder 类,因为 onBind() 方法在 AbstractInputMethodService 中定义为 final...
现在,如何从其他服务调用我的 SoftKeyboard 类中的方法?
最佳答案
我已经通过使用广播接收器类解决了这个问题。
class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals("GET_KEY_KEY")) {
String msg = intent.getStringExtra("msg");
InputConnection ic = getCurrentInputConnection();
if (ic != null) {
ic.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_RIGHT));
}
}
}
}
然后我向我的服务发送了一个广播。
Intent intent = new Intent();
intent.setAction("GET_KEY_KEY");
sendBroadcast(intent);
关于java - 如何将 InputMethodService 与服务连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56299512/
我是一名优秀的程序员,十分优秀!