InputConnection.finishComposingText()NullPointerException [英] InputConnection.finishComposingText() NullPointerException

查看:254
本文介绍了InputConnection.finishComposingText()NullPointerException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我收到了关于crashlytics的错误日志。我不知道是什么原因导致这次崩溃。
它出现在Android 4.x,5.x,6.x设备上。 (三星,索尼,LGE等)

I am getting this error log on crashlytics. I don't know what makes this crash. It occurs on Android 4.x, 5.x, 6.x devices. (Samsung, Sony, LGE etc.)

Fatal Exception: java.lang.NullPointerException: Attempt to invoke interface method 'boolean android.view.inputmethod.InputConnection.finishComposingText()' on a null object reference
   at android.view.inputmethod.InputConnectionWrapper.finishComposingText(InputConnectionWrapper.java:78)
   at android.view.inputmethod.InputMethodManager.checkFocusNoStartInput(InputMethodManager.java:1809)
   at android.view.inputmethod.InputMethodManager.checkFocus(InputMethodManager.java:1761)
   at android.view.inputmethod.InputMethodManager.isActive(InputMethodManager.java:883)
   at android.widget.Editor$CursorAnchorInfoNotifier.updatePosition(Editor.java:4095)
   at android.widget.Editor$PositionListener.onPreDraw(Editor.java:2564)
   at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:1018)
   at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2313)
   at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1301)
   at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:7021)
   at android.view.Choreographer$CallbackRecord.run(Choreographer.java:777)
   at android.view.Choreographer.doCallbacks(Choreographer.java:590)
   at android.view.Choreographer.doFrame(Choreographer.java:560)
   at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:763)
   at android.os.Handler.handleCallback(Handler.java:739)
   at android.os.Handler.dispatchMessage(Handler.java:95)
   at android.os.Looper.loop(Looper.java:145)
   at android.app.ActivityThread.main(ActivityThread.java:6918)
   at java.lang.reflect.Method.invoke(Method.java)
   at java.lang.reflect.Method.invoke(Method.java:372)
   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1404)
   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1199)


推荐答案

确保onCreateInputConnection覆盖方法中的输入连接不为空。

Make sure the input connection is not null in your onCreateInputConnection override method.

@Override
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
    InputConnection inputConnection = super.onCreateInputConnection(outAttrs);
    if (inputConnection == null)
    {
        return null;
    }
    return new MyInputConnectionWrapper(inputConnection,
            true);
}

其中MyInputConnectionWrapper是从InputConnectionWrapper扩展的自定义输入连接包装。

Where MyInputConnectionWrapper is your custom input connection wrapper which is extended from InputConnectionWrapper.

这篇关于InputConnection.finishComposingText()NullPointerException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆