约束布局重叠视图

时间:2018-12-03 22:23:29

标签: android android-constraintlayout

我目前有2张纸牌,一张低于另一张。每张卡都包含约束布局(每张卡都有其自己的子代)。这两个卡在主要约束布局内。 我将第二张卡(称为主卡)放在第一张卡(称为信息卡)下方。 问题是主卡与信息卡重叠,我不知道为什么。屏幕下方: views overlapping

这是我关于这两个视图的XML文件:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/constraintlayout_sendaudio_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/backgroundColor">

<android.support.v7.widget.CardView
    android:id="@+id/cardview_sendaudio_info"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <android.support.constraint.ConstraintLayout
        android:id="@+id/constraintlayout_sendaudio_info"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        .. Its child

    </android.support.constraint.ConstraintLayout>

</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
    android:id="@+id/cardview_sendaudio_maincard"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/cardview_sendaudio_info">

    <android.support.constraint.ConstraintLayout
        android:id="@+id/constraintlayout_sendaudio_maincard"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        .. Its child

    </android.support.constraint.ConstraintLayout>

</android.support.v7.widget.CardView>

1 个答案:

答案 0 :(得分:1)

从以下行中删除“ +”:

src/main/resources

相反,有:

app:layout_constraintTop_toBottomOf="@+id/cardview_sendaudio_info">

在创建并命名新视图时添加+号。引用现有视图时,不需要它。