3

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

我花了几个小时尝试我找到的所有解决方案,但其中任何一个都适用于我的情况。例如:为什么 Android WebView 拒绝用户输入? 并且 无法在 Web 视图中输入

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

谢谢!

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" />
4

1 回答 1

3

嗨 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;
        }
    });
于 2013-07-23T20:42:16.823 回答