スクロールビュー内にリストビューを作成しています。リストビューをその親と一致させたいです。Scroll ビューはその親と一致し、完全な画面を取得しています。しかし、その中の線形レイアウトは親と一致せず、画面全体を取得していないため、リストビューとして
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/linearlayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</LinearLayout>
</ScrollView>
</LinearLayout>