在我的 android 应用程序中,我有一个 webview:
<?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" >
<WebView
android:id="@+id/webView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
我的问题是我无法垂直滚动页面。在水平方向上它工作得很好,但在垂直方向上却不行。现在,例如,如果我将 android:layout_height 的大小设置为 400dp,那么它就可以工作了!但是我不能支持多种屏幕尺寸......有什么想法吗?