これが私のレイアウトファイルです:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/yellow" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<include
android:id="@+id/header"
layout="@layout/header" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="10dp"
android:background="@drawable/green"
android:orientation="vertical" >
<TextView/>
<TextView/>
<TextView/>
<TextView/>
</LinearLayout>
</LinearLayout>
</ScrollView>
そして、これがどのように見えるかです:
青はヘッダー、黄色はScrollView、緑はLinearLayoutで、赤い矢印でマークされたスペースを埋めたいです。
ScrollView を使用するために、ヘッダーと緑の LinearLayout を含む LinearLayout をもう 1 つ使用します。
問題: 緑の LinearLayout でスペース全体を一番下まで埋めるにはどうすればよいですか?