当为表单字段显示软键盘时,Android 4.3 Webview不会滚动

时间:2013-07-31 08:09:19

标签: android webview android-4.3-jelly-bean

我有一个显示表单的普通Webview。表单有很多字段,所以如果我专注于屏幕下方的字段,webview不会滚动,而软键盘会隐藏输入字段。 我只得到4.3这个问题(我在Nexus 4上测试)

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

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

1 个答案:

答案 0 :(得分: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。