我面临一个奇怪的问题,我无法在Android WebView
中找到合适的解决方案。
我们遇到了一些问题,例如
为了解决此问题,我们重写onCreateInputConnection
并将BaseInputConnection
用作代理。
override fun onCreateInputConnection(editorInfo: EditorInfo) = BaseInputConnection(this, false)
但是现在,我们面临一个问题,即根本不发送非ASCII字符。派遣他们时,我尝试拦截,进行了一些调整,但到目前为止没有任何效果。
有人遇到类似的问题吗?我觉得我需要提供一个自定义InputConnection
实现来处理这种情况。