我正在尝试实现下图右侧的布局。我目前得到的是在左边。
这是我的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/garment_grid_item_image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/gridview_image_placeholder"
android:contentDescription="@string/blank"
android:scaleType="centerCrop"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/garment_grid_item_on_loan"
android:src="@drawable/icon_borrowed"
android:contentDescription="@string/blank"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:visibility="gone"
/>
<View
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/item_border"
/>
</RelativeLayout>
@drawable/item_border
(石灰绿色只是为了突出透明区域):
RelativeLayout
用作 的项目模板GridView
。garment_grid_item_image
正在填充代码。garment_grid_item_on_loan
是右上角的紫色三角形,其可见性由代码控制。
底部的View
使用 9 补丁,这是我遇到问题的补丁。我希望它和父母一样高,RelativeLayout
但既不工作match_parent
也不fill_parent
工作。我该怎么做才能让它工作?