【问题标题】:How to make View fill remaining space in ConstraintsLayout如何使视图填充约束布局中的剩余空间
【发布时间】:2019-11-30 20:03:20
【问题描述】:

如何使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。请帮帮我!

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

【问题讨论】:

    标签: android android-constraintlayout


    【解决方案1】:

    这真的很简单。要使任何视图水平或垂直填充可用空间,只需根据需要将layout_width/layout_height 设置为0dp

    【讨论】:

    • 澄清一点,设置0dp后,将top to top to parent or bottom of view on top,bottom to bottom to bottom to parent or top of view below。
    • 不错的回答
    【解决方案2】:

    这项工作,与ConstraintLayout一起使用,因为性能更好。

    <?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">
    
        <ImageView
            android:background="#FF0000"
            android:id="@+id/header"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_header"
            android:minHeight="30dp"
            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:id="@+id/task_fragment"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:background="#00FF00"
            android:orientation="vertical"
            app:layout_constrainedHeight="true"
            app:layout_constraintBottom_toTopOf="@+id/btn_ar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHeight_default="spread"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/header"
            app:layout_constraintWidth_default="wrap">
    
        </FrameLayout>
    
        <ImageButton
            android:id="@+id/btn_ar"
            style="?borderlessButtonStyle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:padding="0dp"
            android:scaleType="fitXY"
            android:src="@drawable/ic_ar"
            app:layout_constraintBottom_toBottomOf="parent" />
    
    </android.support.constraint.ConstraintLayout>
    

    【讨论】:

      【解决方案3】:
      <FrameLayout
          android:id="@+id/task_fragment"
          android:layout_width="match_parent"
          android:layout_height="0dp"
          android:background="#00FF00"
          android:orientation="vertical"
          app:layout_constrainedHeight="true"
          app:layout_constraintBottom_toTopOf="@+id/btn_ar"
          app:layout_constraintEnd_toEndOf="parent"
          app:layout_constraintHeight_default="spread"
          app:layout_constraintStart_toStartOf="parent"
          app:layout_constraintTop_toBottomOf="@id/header"
          app:layout_constraintWidth_default="wrap">
      
      </FrameLayout>
      

      这应该可行。

      解释:

      您只需要将此 FrameLayout 约束的顶部设置为页眉的底部,并将此 FrameLayout 约束的底部设置为页脚的顶部。

      设置完所有约束后,还需要设置FrameLayout的布局参数来匹配约束。为此,您可以尝试将layout_height 设置为0dp。这将使 FrameLayout 的高度具有match_constraint 的效果。

      有关更多详细信息,您可以查看此文档:https://developer.android.com/reference/android/support/constraint/ConstraintLayout(只需搜索关键字match constraint,您就会找到该块),或者只需查看类似的答案:Set width to match constraints in ConstraintLayout

      【讨论】: