0

我有一个显示表单的普通 Webview。表单有很多字段,所以如果我关注屏幕下部的一个字段,webview 不会滚动,并且软键盘隐藏了输入字段。我只在 4.3 版遇到过这个问题(我正在 Nexus 4 上进行测试)

PS:相同的 Webview 适用于 4.2 及以下版本。

这是一个已知问题还是有解决方法?

4

1 回答 1

0

您是否尝试使用 webview 以及在相对布局中使用 Scrollview

<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/bg_header"
    >

<ScrollView 
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    >

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

</ScrollView>

尝试将verticalscrolling 设置为true。

于 2013-07-31T08:49:36.023 回答