この質問はすでにここで尋ねられていますが、解決策はありません。
私は持っていWebView
ます。WebView
using属性に最小の高さを設定したいのですがうまくいきminHeight
ません。同じ属性がボタンにも機能します。
<?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 !!"/>
以下の画像から明らかなように、WebView はminHeight
属性をサポートしていません。この問題の解決策を知っている人はいますか?