android - 如何让View填充ConstraintLayout中的剩余空间

标签 android android-constraintlayout

如何让 View FrameLayout 填满 ConstraintLayout 中的所有剩余空间

我有这样的 xml:

<ImageView
    android:background="#FF0000"
    android:id="@+id/header"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_header"
    android:scaleType="fitXY"
    android:adjustViewBounds="true"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHeight_default="wrap"
    app:layout_constraintWidth_default="spread"/>
<FrameLayout
    android:background="#00FF00"
    app:layout_constraintHeight_default="spread"
    app:layout_constraintWidth_default="wrap"
    app:layout_constraintTop_toBottomOf="@id/header"
    app:layout_constrainedHeight="true"
    app:layout_constraintBottom_toTopOf="@id/footer"
    android:id="@+id/task_fragment"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
<LinearLayout
    android:background="#FFFF00"
    android:orientation="vertical"
    android:id="@+id/footer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHeight_default="spread"
    app:layout_constraintWidth_default="spread"
    app:layout_constraintBottom_toBottomOf="parent">
    <ImageButton
        style="?borderlessButtonStyle"
        android:id="@+id/btn_ar"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:padding="0dp"
        android:scaleType="fitXY"
        android:adjustViewBounds="true"
        android:src="@drawable/ic_ar"/>
</LinearLayout>

中间有页眉、页脚和FrameLayout 我想让FrameLayout填满所有剩余空间。

我不明白,我必须使用哪些属性来扩展 FrameLayout。请帮助我!

编辑:或任何具有不同布局的解决方案。

最佳答案

这真的很简单。要使任何 View 水平或垂直填充可用空间,只需设置 layout_width/layout_height0dp根据您的需要。

关于android - 如何让View填充ConstraintLayout中的剩余空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52060492/

相关文章:

java - 如何将位图插入 Gridview?

android - 约束布局 - 具有最大宽度的两个 View

java - Android Studio,Java : Cannot change horizontal margin at run time (ConstraintSet. 左)

android - 如何在 ConstraintLayout 中将一对 View 居中?

android - 如何让我的标记每秒移动一次

java - Android RecyclerView 滚动并将项目置于顶部

android - ConstraintLayout 中的 RecyclerView 与其他元素重叠

android - 引入ConstraintLayout之后再有RelativeLayout有什么好处?

Android 编译时错误 Archive for required library : 'lib' in project 'AndroidMagickActivity' cannot be read or is not a valid ZIP file

android - 在 Android 上的 Eclipse 中调试有什么问题?