如果不确切知道内容高度,请创建视图匹配父级

时间:2017-12-30 18:07:43

标签: android android-layout android-recyclerview match parent

我有这样的布局

enter image description here

我想创建像红线匹配父项的视图,但我不知道确切的内容高度。我尝试创建视图边距顶部等于高度imageview的宽度,但我的内容设置为高度wrap_content,所以它不起作用

这是我的布局代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
    android:id="@+id/img"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:src="@drawable/common_google_signin_btn_icon_dark" />

<TextView
    android:id="@+id/txtContent"
    android:layout_width="50dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="50dp"
    android:layout_toRightOf="@id/img" />

<View
    android:id="@+id/line"
    android:layout_width="5dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="25dp"
    android:layout_marginTop="50dp"
    android:background="@color/colorAccent" />

1 个答案:

答案 0 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/img"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/common_google_signin_btn_icon_dark" />

<TextView
android:id="@+id/txtContent"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:layout_toRightOf="@id/img" />

<View
android:id="@+id/line"
android:layout_width="50dp"
android:layout_height="5dp"
android:layout_below="@+id/txtContent"
android:background="@color/colorAccent" />