我有一个显示表单的普通Webview。表单有很多字段,所以如果我专注于屏幕下方的字段,webview不会滚动,而软键盘会隐藏输入字段。 我只得到4.3这个问题(我在Nexus 4上测试)
PS:相同的Webview适用于4.2及以下版本。
这是一个已知问题还是有解决方法?
答案 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。