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 到内容,用 wrap_content 代替 match_parent(也不要使用 fill_parent,至少不要将它们与 match_parent 混合)。

于 2013-06-20T13:31:53.883 回答