Gridview有两列和自动调整大小的图像
我正在尝试用两列制作gridview。我的意思是每排并排两张照片,就像这张照片一样。
但是我的照片之间有空格,因为它的大小不一样。这是我得到的。
如您所见,第一张图片隐藏了显示联系人姓名和电话号码的图例。而其他图片未正确拉伸。
这是我的GridView xml文件。如您所见,columnWidth
设置为200dp。我希望它是自动的,所以图片会自动调整每个屏幕尺寸的大小。
<?xml version="1.0" encoding="utf-8"?><GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridViewContacts" android:layout_width="fill_parent" android:layout_height="fill_parent" android:numColumns="2" android:columnWidth="200dp" android:stretchMode="columnWidth" android:gravity="center" />
这是项目xml文件,它代表每个项目本身。
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <ImageView android:id="@+id/imageViewContactIcon" android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="fitXY" /> <LinearLayout android:id="@+id/linearlayoutContactName" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:paddingLeft="5dp" android:paddingTop="5dp" android:paddingBottom="5dp" android:background="#99000000" android:layout_alignBottom="@+id/imageViewContactIcon"> <TextView android:id="@+id/textViewContactName" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#FFFFFF" android:textStyle="bold" android:textSize="15sp" android:text="Lorem Ipsum" /> </RelativeLayout>
所以我想要的是每行显示两个图像,并且无论屏幕大小如何,图像都会自动调整大小。我在布局上做错了什么?
相关分类