内部に webView と View を持つ Android レイアウトがあります。実行時にWebビューを表示するかどうかを決定し、そうでない場合は、他のビューが親の背景を埋める必要があります。また、webView を一番下に表示したいので、layout_gravity を一番下に設定しましたが、うまくいきません。
ここに私のxmlがどのように見えるかがあります:
<?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"
android:orientation="vertical"
android:weightSum="1" >
<WebView
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_gravity="bottom" />
<View
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</View>
</LinearLayout>