Androidのレイアウトに少し問題があります...
LinearLayout を保持する ScrollView 要素があります。スクロールビューがデバイス画面全体を埋め、リニアレイアウトがスクロールビューの高さ全体を埋めたいと思っています。
以下のコードでは、scrollView が画面全体に表示されますが、linearLayout はスクロールビューの高さの約半分しか表示されません。
これが私のコードです:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff036c07">
<LinearLayout
android:background="#FF0000"
android:id="@+id/overview_form"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>
</ScrollView>
私が見逃しているアイデアはありますか?