0

私は相対的なレイアウトを持っており、その高さを埋める左揃えのビューが必要です:

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#FF0" >

    <LinearLayout
        android:id="@+id/stripe"
        android:layout_width="20dp"
        android:layout_height="fill_parent"
        android:background="#F00"
        android:layout_alignParentLeft="true" 
        android:layout_alignParentTop="true"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/stripe" 
        android:layout_alignParentTop="true" 
        android:text="Some long string." />
</RelativeLayout>

「ストライプ」用に予約された 20 dp の幅が表示されますが、期待どおりに赤い塗りつぶしが得られません。「ストライプ」ビューの可視性が VISIBLE (INVISIBLE ではなく) に設定されていると確信しています。なぜこれが機能しないのか考えていますか?

ありがとう

4

0 に答える 0