RelativeLayout与父级的高度不匹配

时间:2015-04-22 20:09:46

标签: android listview android-relativelayout

主要布局中的relativelayout在设备上显示时不会填充父高度。实际上我希望左侧布局用黄色垂直填充行。 enter image description here

这是xml代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/verses_relativeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<com.ad.holyquran.extra.TextViewEx
    android:id="@+id/textView_Verse"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_toRightOf="@+id/versesRelativeLayout"
    android:gravity="right"
    android:layout_marginTop="-15dp"
    android:paddingBottom="5dp"
    android:paddingRight="5dp"
    android:text="Text"
    android:textSize="@dimen/versesTextSize"
    android:textColor="#ff000000" />

<TextView
    android:id="@+id/textView_VerseTranslation"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/textView_Verse"
    android:paddingBottom="5dp"
    android:gravity="fill_horizontal"
    android:layout_centerHorizontal="true"
    android:layout_toRightOf="@+id/versesRelativeLayout"
    android:paddingRight="5dp"
    android:paddingLeft="5dp"
    android:paddingTop="5dp"
    android:text="Text Text Text Text Text Text"
    android:textSize="20sp" />

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:id="@+id/versesRelativeLayout"
    android:layout_alignParentLeft="true"
    android:background="#fff3f27f">

    <RelativeLayout
        android:id="@+id/verseNumberIcRL"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/versesImageView"
            android:layout_alignParentTop="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/verse_number_ic" />

        <TextView
            android:id="@+id/textView_verseNumber"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBottom="@+id/versesImageView"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:text="280"
            android:paddingBottom="28dp"
            android:textSize="14sp"
            android:textColor="#ff000000" />
    </RelativeLayout>
</RelativeLayout>

感谢阅读。

1 个答案:

答案 0 :(得分:0)

如果删除该行

机器人:layout_toRightOf = “@ + ID / versesRelativeLayout”

它将停止在右边。如果您需要黄色作为背景,那么在主布局(这是第一个relativeLayout)中将其设置为背景使用 android:background =“@ drawable \ image”

您可能需要将所有其他元素放在主RelativeLayout中。 希望这可以帮助。     我看不到主要RelativeLayout的结束标记。