我试图在 中显示 a PopupWindow
,InputMethodService
但是当我使用以下代码显示它时:
LayoutInflater inflater = ( LayoutInflater ) getSystemService( LAYOUT_INFLATER_SERVICE );
pw = new PopupWindow(
inflater.inflate(R.layout.info_dialog, null, false), 320, 480, true);
pw.showAtLocation(mInputView, Gravity.CENTER, 0, 0);
在关闭我的InputMethodService
.
我从 LogCat 得到的错误是这样的:
12-21 15:22:20.530: E/InputMethodService(4075): Unexpected null in startExtractingText : mExtractedText = null, input connection = com.android.internal.view.InputConnectionWrapper@40a60150
有没有人见过这个或知道如何处理它?