当文本编辑字段获得焦点时,Android Webview不显示键盘

时间:2019-04-29 15:02:15

标签: android webview google-form

我有DialogFragment和一个WebView,它随Google Forms网页一起打开。但是单击文本输入字段时,键盘未显示。有什么建议么?原始的Android 8.1(Nexus 5x)。

WebView webView = binding.webView;
webView.requestFocus(View.FOCUS_DOWN);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl(google_form_url);

布局:

<layout xmlns:android="http://schemas.android.com/apk/res/android">

    <data />

    <WebView
        android:id="@+id/webView"
        style="?android:attr/webViewStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:focusable="true"
        android:focusableInTouchMode="true" />

</layout>

清单:

<activity
            android:name="com.keeple.april.Activity2"
            android:theme="@style/AppTheme"
            android:screenOrientation="portrait"
            android:launchMode="singleTop"
            android:windowSoftInputMode="adjustResize"/>

1 个答案:

答案 0 :(得分:0)

您是否尝试在requestFocus下添加触摸监听器?

webView.setOnTouchListener(new View.OnTouchListener()
{
    @Override
    public boolean onTouch(View v, MotionEvent event)
    {
        switch (event.getAction())
        {
            case MotionEvent.ACTION_DOWN:
            case MotionEvent.ACTION_UP:
                if (!v.hasFocus())
                {
                    v.requestFocus();
                }
                break;
        }
        return false;
    }
});