在网页视图中加载了以下网址,并且EditText feild没有获得焦点 因此,键盘不会显示。
WebView中加载的网址 https://docs.google.com/forms/d/e/1FAIpQLSeICt0NT0xWZZV1iwLEaaZnnw5n5-8iRGt6HGQHQ9QFq1xpyA/viewform?c=0&w=1
任何帮助都会很明显。
答案 0 :(得分:2)
发现问题:
<WebView
android:id="@+id/common_webview_id"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusableInTouchMode="true"></WebView>
问题是&#34; focusableInTouchMode&#34;属性值设置为
&#34;假&#34;即android:focusableInTouchMode =&#34; false&#34;它应该是 &#34; true&#34; 编辑文字以获得焦点。