下の画像の右側のレイアウトを実現しようとしています。私が現在得ているものは左側にあります。

これが私のレイアウトです:
<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。それを機能させるために何ができますか?