Android UI の設計は初めてです。ビュー (画像のように) を指定された線形レイアウトに実装したいと考えています。私を整理するのを手伝ってください。
<Linear Layout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<include
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/header" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
?????????????????????????????
</LinearLayout>
<ImageView
android:id="@+id/imageView2"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:contentDescription="@string/dash_progress"
android:scaleType="fitXY"
android:src="@drawable/account_progress" />
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true" >
</ListView>
これは私が必要とする望ましいビューです