未验证 提交 d84d204c 编写于 作者: M Matt Carroll 提交者: GitHub

Android Embedding PR30: Make FlutterView focusable so that the keyboard can...

Android Embedding PR30: Make FlutterView focusable so that the keyboard can interact with it. (#8551)
上级 a344015e
......@@ -170,6 +170,10 @@ public class FlutterView extends FrameLayout {
addView(flutterTextureView);
break;
}
// FlutterView needs to be focusable so that the InputMethodManager can interact with it.
setFocusable(true);
setFocusableInTouchMode(true);
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册