如何使Constraint Layout抵制扩展以覆盖其他视图

时间:2018-06-02 13:38:50

标签: android android-constraintlayout

我有一个约束布局,在里面我有一个标题视图和一个页脚视图

这些是锚点,它们之间有EditText RecyclerViewButton链接在一起。

布局如下:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/app_padding">


    <TextView
        android:id="@+id/header"
        style="@style/app_text.large"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="@dimen/app_padding"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Hello Header" />

    <EditText
        android:id="@+id/filter"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/list"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/header"
        app:layout_constraintVertical_chainStyle="packed" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/list"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/add"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/filter" />

    <Button
        android:id="@+id/add"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/footer"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/list" />


    <TextView
        android:id="@+id/footer"
        style="@style/app_text.large"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="@dimen/app_padding"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        tools:text="Hello footer" />
</android.support.constraint.ConstraintLayout>

这看起来就像我想要的那样,一个包含多个项目的列表,它总是以屏幕为中心。

问题是当列表中填充的项目太多时,它会向上展开并覆盖标题。

要将列表layout_height设置为0dp解决问题,但列表总是占据屏幕的大部分(即使项目太少)和{{1} }始终位于页脚上方,Button始终位于页眉下方。

有没有办法让EditText具有RecyclerView作为其布局高度,但是在某种程度上受到限制,永远不会变得太大而无法覆盖标题?

我更喜欢不涉及设置最大高度的解决方案,因为这应该在多个屏幕尺寸上运行

1 个答案:

答案 0 :(得分:1)

您需要app:layout_constrainedHeight="true"属性设置RecyclerView。这允许在wrap_content的高度上使用view,但仍然强制执行限制以限制结果高度。