我的布局如下。位置视图可能已消失或可见并由代码控制。因此,内容视图的高度可根据位置视图而变化。但是分隔符视图总是具有相同的高度,尽管它声明与其父级匹配。您想告诉我如何确保分隔视图与其父级具有相同的高度吗?非常感谢。
<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>
答案 0 :(得分:1)
男人,你完全混淆了,为什么你在里面使用线性布局?没有意义。相对布局没有方向概念。
关于那个高度,可能尝试使用alignTop和alignBottom来替换内容,而使用wrap_content而不是match_parent(也不要使用fill_parent,至少不要将它们与match_parent混合)。