当我显示键盘时,为什么我的视图不会调整大小?

时间:2014-04-18 21:46:15

标签: android

我有一个非常基本的网络视图应用,这是layout.xml

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

在清单中我有:

android:windowSoftInputMode="stateVisible|adjustResize"

在我加载的页面中,页面底部有一个输入。当我点击它时,键盘显示,但模糊了它。它不是不是视图缩小但不滚动的情况,因为我无法滚动webview以显示键盘可见的输入。我做错了什么?

1 个答案:

答案 0 :(得分:0)

这是全屏应用中的WebViews的一个错误。 More information in this other answer,但我通过将我的应用设为非全屏来修复它。