android:minHeight不在webview中工作

mmd*_*ook 7 android webview

我有以下xml文件.

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/top" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:minHeight="300px">
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webview" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:background="#ff0000"
    android:minHeight="290px">
</WebView>
</FrameLayout>
Run Code Online (Sandbox Code Playgroud)

我正在加载示例HTML文件,页面高度为150px.加载页面后,webview的背景仅填充150px的红色.但我将android:minHeight属性设置为290px.