我有一个显示表单的普通Web视图。表单有很多字段,所以如果我关注屏幕下部的字段,则Web视图不会滚动,软键盘会隐藏输入字段。我只在4.3上遇到了这个问题(我正在Nexus 4上测试)
附言:相同的Webview适用于4.2及以下版本。
这是一个已知的问题还是有解决方法?
DId您尝试在相对布局中使用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>
尝试将垂直滚动设置为true。