0

私は以下のようなレイアウトを持っています。ロケーションビューは、コードによって表示されなくなったり、表示されたり、制御されたりする可能性があります。したがって、コンテンツ ビューの高さは、ロケーション ビューに基づいて可変です。ただし、分割ビューは、親と一致すると宣言されていますが、常に同じ高さです。分割ビューが親と同じ高さであることを確認する方法を教えてください。どうもありがとう。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
    <LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@+id/divider"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/location"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:visibility="gone" />

        <TextView
            android:id="@+id/type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical" />
      </LinearLayout>
      <View
        android:id="@+id/divider"
        android:layout_width="1px"
        android:layout_height="match_parent"
        android:layout_gravity="center_vertical"
        android:layout_marginBottom="5dp"
        android:layout_marginTop="5dp"
        android:background="@drawable/ic_divider_dashed_holo_dark" />

</RelativeLayout>
4

1 に答える 1

1

完全に混同していますが、なぜ内部で線形レイアウトを使用しているのですか? 意味がありません。相対レイアウトには向きの概念がありません。

その高さについては、おそらく alignTop と alignBottom を content に合わせて、wrap_content の代わりに match_parent を試してみてください (また、fill_parent を使用しないでください。少なくとも、それらを match_parent と混ぜないでください)。

于 2013-06-20T13:31:53.883 に答える