這個問題已被詢問here,但它沒有解決方案。我有一個WebView
。我想使用minHeight
屬性將最小高度設置爲WebView
,但它不起作用。 Button的相同屬性起作用。爲什麼minHeight屬性在WebView Android中不起作用?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.anshul.webview.WebActivity">
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="400dp"></WebView>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:minHeight="150dp"
android:text="This is a Button. It's minHeight is set to 150 dp and it works !!"/>
顯然從下面的圖像,web視圖是不支持的minHeight
屬性。有沒有人知道這個問題的解決方案?
其中android版本你有這個問題? – savepopulation
我在Android 25上試過了,面臨這個問題。但我認爲這與Android版本無關。 – thedarkpassenger
在pre kit kat版本中有一些關於webview的問題。所以我問。 – savepopulation