Android上的软键盘覆盖了文本框,因此用户无法看到正在键入的内容

时间:2015-08-23 20:39:01

标签: android webview

我无法做到,它不是专注于webview的输入或textarea

我点击上次输入。;

http://i.stack.imgur.com/MGG3L.png

应该是这个(android web browser)

http://i.stack.imgur.com/WFRta.png

我该怎么办?

MainActivity.js;

webview = (WebView) findViewById(R.id.webView1);
        webview.getSettings().setJavaScriptEnabled(true);
        webview.loadUrl("http://mutlugunluk.com");


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

activity_main

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
        <WebView
            android:id="@+id/webView1"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
</RelativeLayout>

清单

<activity
        android:windowSoftInputMode="adjustPan|adjustResize"
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

1 个答案:

答案 0 :(得分:2)

您是否尝试将Window SoftInput Mode属性设置为adjustPan和adjustResize以进行活动?

在为该活动设置的Manifest.xml中:

git commit -a
git push

那应该做&#34;技巧&#34;当键盘弹出时向上移动所有东西。

注意:如果top元素是RelativeLayout,这应该有用,所以尝试将LinearLayout更改为RelativeLayout