在Android Webview加载的URL中,EditText未获得焦点且键盘未启动

时间:2017-09-13 07:57:41

标签: android android-webview

  

在网页视图中加载了以下网址,并且EditText feild没有获得焦点   因此,键盘不会显示。

     

WebView中加载的网址   https://docs.google.com/forms/d/e/1FAIpQLSeICt0NT0xWZZV1iwLEaaZnnw5n5-8iRGt6HGQHQ9QFq1xpyA/viewform?c=0&w=1

     

尝试过的解决方案:   Why is Android WebView refusing user input?

任何帮助都会很明显。

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; 编辑文字以获得焦点。