我正在尝试将 imageview 和 listview 放在两个单独的相对布局中,但是当我将图像添加到 imageview 时,图像的高度应该小于应有的高度,它会在图像和 listview 之间添加一些黑色空间。但是当我把 textview 它工作正常。这是代码片段..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight">
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginTop="-10dp"
android:src="@drawable/bar" />
</RelativeLayout>
<ListView
android:id="@+id/list11"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="65dp"
android:cacheColorHint="#000000"
android:focusable="false"
android:listSelector="@color/itemcolor1"
android:scrollbars="vertical"
android:scrollingCache="false" >
</ListView>
</RelativeLayout>
谢谢各位,烦死了