其他分享
首页 > 其他分享> > android-无法将文本插入选项卡上的webview

android-无法将文本插入选项卡上的webview

作者:互联网

我有两个标签,每个标签都包含一个Webview(为简单起见,带有google页面).
Web视图加载正常,但是当我尝试在Google的搜索字段中插入一些文本时,软键盘会按预期显示,但是如果我开始编写一些文本,则该字段会失去焦点.
似乎它认为软键盘是选项卡布局的一部分,而不是网页布局的一部分.

我已经花了数小时尝试所有找到的解决方案,但是其中任何一个都可以解决我的问题.
例如:Why is Android WebView refusing user input?Can’t type inside a Web View

任何其他想法真的很受欢迎!
我认为所有相关代码都在下面发布,否则请询问.

谢谢!

MainActivity.java(FragmentActivity)

public void onTabChanged(String selected) {

Fragment shownFragment = fm.findFragmentByTag(shown);
FragmentTransaction ft = fm.beginTransaction();

// Remove the current fragment from screen
if (shownFragment != null) {
    ft.remove(shownFragment);
}

// Change to the new fragment
if (selected.equals("Tab1")) {
    shown = "Tab1";
    ft.add(R.id.fragment_content, new WebFragment(), "Tab1");

} else if (selected.equals("Web")) {
    shown = "Web";
    ft.add(R.id.fragment_content, new WebFragment(), "Web");

}

ft.commit();
}

WebFragment.java

public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState) {

webView = (WebView) inflater.inflate(R.layout.activity_web_fragment, container, false);
webView.getSettings().setJavaScriptEnabled(true);

webView.loadUrl("http://www.google.com");
webView.setWebViewClient(new MyWebViewClient());

Log.v("WebFragment", "Returning web view");
webView.requestFocus(View.FOCUS_DOWN);

return webView;

}

private class MyWebViewClient extends WebViewClient {

@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
    view.loadUrl(url);
    return true;
}

@Override
public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
    if ((event.getKeyCode() == KeyEvent.KEYCODE_BACK) && view.canGoBack()) {
    view.goBack();
    return true;
    }

    return super.shouldOverrideKeyEvent(view, event);
}
}

activity_main.xml

<LinearLayout android:id="@+id/LinearLayout1" 
android:orientation="vertical" 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent"
android:layout_height="match_parent">

<TabHost android:id="@android:id/tabhost" 
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:layout_marginTop="2dp">

    <LinearLayout android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:orientation="vertical">

        <HorizontalScrollView android:id="@+id/hScrollView" 
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:fillViewport="true" 
            android:scrollbars="none">

            <TabWidget android:id="@android:id/tabs"
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content"
                android:tabStripEnabled="true"/>
        </HorizontalScrollView>

        <FrameLayout android:id="@android:id/tabcontent"
            android:layout_width="0dp" 
            android:layout_height="0dp"
            android:layout_weight="0" />

        <FrameLayout android:id="@+id/fragment_content"
            android:layout_width="match_parent" 
            android:layout_height="0dp"
            android:layout_weight="1" />

    </LinearLayout>
</TabHost>

activity_web_fragment.xml

<?xml version="1.0" encoding="utf-8"?>
<WebView android:id="@+id/webView" 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent" />

解决方法:

您好Safime,
   我想我找到了解决方案.我敢肯定,您已经搜索过,并且看到互联网上有此变通方法,声称可以解决该错误:

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

但是,它对我不起作用,然后我进行了一些更改,然后开始起作用.希望这对您有所帮助.

Webview.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {

            switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN:
                case MotionEvent.ACTION_UP:
                    //The key is this line. 
                    v.requestFocusFromTouch();  
                    break;
            }               
            return false;
        }
    });

标签:tabs,android-webview,android
来源: https://codeday.me/bug/20191123/2065749.html