0

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

スクリーンショット

これが私のレイアウトです:

<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(ライムグリーンは、透明な領域を強調するためだけのものです):

9パッチドローアブル

RelativeLayoutアイテムテンプレートとして使用されますGridViewgarment_grid_item_imageコードに入力されています。garment_grid_item_on_loan右上の紫色の三角形で、その可視性はコードで制御されています。

一番View下のは9パッチを使用していて、それは私が問題を抱えているパッチです。親と同じくらいの高さにしたいのですRelativeLayoutが、どちらもmatch_parent機能しませんfill_parent。それを機能させるために何ができますか?

4

1 に答える 1

0

似たような画像を使ってレイアウトを試しましたが、アクティビティのルート要素として設定すると正常に機能します。

これは、RelativeLayoutのサイズがwrap_contentであり、子ビューがラップするサイズを指定していないことと関係がある可能性があります。問題が解決するかどうかを確認するためだけに固定サイズを指定してから、そこから進んでください。

于 2013-02-27T14:23:42.897 に答える