在WebView中点击表单字段不显示软键盘

时间:2010-11-16 23:55:16

标签: android webview

我创建了自己的WebView并设置了WebChromeClient和WebViewClient对象。当我启动此WebView时,HTML表单字段在我触摸它们时会产生反应(光标出现),但它们不会被选中,软键盘也不会启动。如果我使用轨迹球选择表格并按下它,键盘就会出现。

我尝试将myWebview.requestFocusFromTouch()称为this answer建议,但它返回false并没有帮助。

7 个答案:

答案 0 :(得分:96)

http://code.google.com/p/android/issues/detail?id=7189

这是一个修复,以防其他不清楚。

webview.requestFocus(View.FOCUS_DOWN);
    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;
        }
    });

答案 1 :(得分:27)

与Dv_MH的回答达成10%的协议。然而,附属课程有点过分。我需要做的就是扩展WebView&对onCheckIsTextEditor()

返回true
import android.content.Context;
import android.util.AttributeSet;
import android.webkit.WebView;

public class LiveWebView extends WebView {

    public LiveWebView(Context context) {
        super(context);
    }

    public LiveWebView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public LiveWebView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public boolean onCheckIsTextEditor() {
        return true;
    }
}

从那里,我可以将它用作普通的WebView(甚至在Dialogs中)。

或者,使用更少的代码:

WebView web = new WebView(context) {
  @Override
  public boolean onCheckIsTextEditor() {
    return true;
  }
};

答案 2 :(得分:7)

<强> 重要 我花了几个小时搜索这个,我通过确保扩展“ViewGroup”的父布局没有属性来解决它

android:descendantFocusability =“blocksDescendants”阻止子布局聚焦

将android:focusable =“true”添加到webview

答案 3 :(得分:4)

AndroidChen的答案对我来说根本不起作用,但我搜索了提供的链接(http://code.google.com/p/android/issues/detail?id=7189),我找到了以下课程,它完美运行(HTC Bravo上的Android Froyo),不仅仅是文本,还有所有按钮,重定向等,一切都很完美:D

class LiveWebView extends WebView
{
    Context mContext;

    public LiveWebView(Context context, String URL)
    {
        super(context);
        mContext = context;
        setWebViewClient(URL);
    }

    @Override
    public boolean onCheckIsTextEditor()
    {
        return true;
    }

    @SuppressLint("SetJavaScriptEnabled")
    boolean setWebViewClient(String URL)
    {
        setScrollBarStyle(SCROLLBARS_INSIDE_OVERLAY);
        setFocusable(true);
        setFocusableInTouchMode(true);
        requestFocus(View.FOCUS_DOWN);

        WebSettings webSettings = getSettings();
        webSettings.setSavePassword(false);
        webSettings.setSaveFormData(false);
        webSettings.setJavaScriptEnabled(true);
        webSettings.setSupportZoom(false);
        webSettings.setUseWideViewPort(false);

        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;
            }
        });

        this.setWebViewClient(new WebViewClient()
        {
            ProgressDialog dialog = new ProgressDialog(mContext);

            @Override
            public boolean shouldOverrideUrlLoading(WebView view, String url)
            {
                loadUrl(url);

                return true;
            }

            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
            {
                Toast.makeText(mContext, "Oh no! " + description, Toast.LENGTH_SHORT).show();
            }

            public void onPageStarted(WebView view, String url, Bitmap favicon)
            {
                if (dialog != null)
                {
                    dialog.setMessage("Loading...");
                    dialog.setIndeterminate(true);
                    dialog.setCancelable(true);
                    dialog.show();
                }

            }

            public void onPageFinished(WebView view, String url)
            {
                if (dialog != null)
                {
                    dialog.cancel();
                }
            }
        });

        this.setWebChromeClient(new WebChromeClient()
        {
            public void onProgressChanged(WebView view, int progress)
            {
                // Activities and WebViews measure progress with different scales.
                // The progress meter will automatically disappear when we reach 100%
            }

            @Override
            public boolean onJsAlert(WebView view, String url, String message, JsResult result)
            {
                result.confirm();
                return true;
            }
        });

        loadUrl(URL);

        return true;
    }
}

然后在对话框中创建一个webview,我写了这段代码

AlertDialog.Builder alert = new AlertDialog.Builder(M_PaymentOptions.this);
alert.setNegativeButton("Back to Payment Options", new DialogInterface.OnClickListener()
{
    @Override
    public void onClick(DialogInterface dialog, int id)
    {}
});

alert.setTitle("BarclayCard Payment");

LiveWebView liveWevViewObject = new LiveWebView(M_PaymentOptions.this, redirecturl);

alert.setView(liveWevViewObject);

alert.show();

答案 4 :(得分:1)

只需在WebView

下添加不可见的EditText即可
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<EditText
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:visibility="invisible" />

<WebView
    android:id="@+id/webView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

所有这些与焦点相关的解决方案都不适用于我的Samsung Note 3 / Android 5.0

答案 5 :(得分:0)

正如 Google 问题跟踪器上的 here 所述,此修复工作正常。不需要别的了。

webView.isFocusable = true
webView.isFocusableInTouchMode = true
webView.requestFocus(View.FOCUS_DOWN)

答案 6 :(得分:0)

对于在 DialogFragment(或一般的 Dialog)中拥有此功能的任何人,这可能与此错误有关:https://issuetracker.google.com/issues/36915710

以下是对我有用的解决方法:

https://stackoverflow.com/a/16573061/1316677

总结:在Dialog中的布局中创建一个不可见/“消失”的EditText,然后调用:

     EditText edit = view.findViewById(R.id.editText);
     edit.setFocusable(true);
     edit.requestFocus();