在 InputMethodService 中开始提取文本时出现意外的 null
unexpected null in start extracting text in InputMethodService
我正在开发软键盘,一切正常,但是当我更改 orientation
时出现以下错误
"Unexpected null in startExtractingText : mExtractedText = null, input connection = com.android.internal.view.InputConnectionWrapper"
并关闭输入视图
我不知道如何解决这个问题,请帮忙。
我发现了问题
当外部应用程序强制关闭输入视图时,它将抛出
start extracting text null
我遇到过同样的问题。我已经解决了这个问题。在我的例子中,我在重写的方法 setExtractView(View view) 上添加了我的自定义视图。但我并没有先删除视图。
让我解释一下:
@Override
public void setExtractView(View view) {
// You have to do this if you are not doing so
view.removeAllViews() ; // This is the line
view.addView(yourView) ; // Here you can put your own Custom view
super.setExtractView(view);
}
这是为me.I工作的,希望对您有所帮助。
我正在开发软键盘,一切正常,但是当我更改 orientation
时出现以下错误
"Unexpected null in startExtractingText : mExtractedText = null, input connection = com.android.internal.view.InputConnectionWrapper"
并关闭输入视图
我不知道如何解决这个问题,请帮忙。
我发现了问题 当外部应用程序强制关闭输入视图时,它将抛出
start extracting text null
我遇到过同样的问题。我已经解决了这个问题。在我的例子中,我在重写的方法 setExtractView(View view) 上添加了我的自定义视图。但我并没有先删除视图。
让我解释一下:
@Override
public void setExtractView(View view) {
// You have to do this if you are not doing so
view.removeAllViews() ; // This is the line
view.addView(yourView) ; // Here you can put your own Custom view
super.setExtractView(view);
}
这是为me.I工作的,希望对您有所帮助。