我是 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>
这是我需要的理想视图