我包括 layout.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@color/grey" >
<RelativeLayout
android:id="@id/layout_content_magthumb"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="@color/grey" >
<ImageView
android:id="@id/content_thumb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/padding_large"
android:src="@drawable/cover1" />
</RelativeLayout>
<RelativeLayout
android:id="@id/layout_content_list"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:layout_toRightOf="@id/layout_content_magthumb"
android:layout_toLeftOf="@id/layout_content_description"
android:background="@color/yellow" >
<ListView
android:id="@id/list_content"
android:layout_width="wrap_content"
android:layout_height="fill_parent" >
</ListView>
</RelativeLayout>
<RelativeLayout
android:id="@id/layout_content_description"
android:layout_width="wrap_parent"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@android:color/darker_gray" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/padding_large"
android:src="@drawable/cover2" />
</RelativeLayout>
</RelativeLayout>
我面临的问题是,每当我在布局中包含 ListView 时,它都会占用整个布局,除了左侧 RelativeLayout 的布局空间。
请建议。