如何在ConstraintLayout中设置视图的高度匹配父级?

时间:2018-11-14 11:20:15

标签: android android-constraintlayout

我正在创建一个layout。我想将自定义toolbar(这是另一种布局)设置到顶部 layoutFrameLayout下方toolbar的位置。但是FrameLayout应该获得layout的其余高度(match_parent)。如何使用约束布局来实现这一目标?

谢谢。

4 个答案:

答案 0 :(得分:4)

在ConstraintLayout中使用match_contraint的0dp

android:layout_height="0dp"

答案 1 :(得分:1)

解决方案::我假设您的工具栏是另一个xml文件,如下所示:

toolbar.xml

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="60dp"
    android:background="?attr/colorPrimary"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

然后使用ConstraintLayoutFrameLayout一起使用,如下所示:

<?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"
    tools:context=".MainActivity">

    <include
        android:id="@+id/toolbar"
        layout="@layout/toolbar"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/toolbar" />

</android.support.constraint.ConstraintLayout>

希望这会有所帮助。如果您有任何疑问,请发表评论。

答案 2 :(得分:0)

请注意,与android中的其他视图组不同,约束布局在子视图之间应具有循环依赖项。因此,您应该在子视图的每一侧使用0dp而不是'match_parent'宽度和约束。

string(4) "Text" 
------------------------- 
string(8) "Grafiker"

答案 3 :(得分:0)

给工具栏一个id, 并在您的框架布局中将width和height设置为0dp,添加类似于此代码的约束。

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context=".Main2Activity">

    <Toolbar
        android:id="@+id/toolbar"
        app:layout_constraintTop_toTopOf="parent"
        android:background="#ab1010"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    </Toolbar>

    <FrameLayout
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@id/toolbar"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:background="#f1f1df"
        >

    </FrameLayout>


</android.support.constraint.ConstraintLayout>