如何让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
。请帮帮我!
编辑:或任何具有不同布局的解决方案。
发布于 2018-08-28 22:52:50
这项工作,使用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>
发布于 2019-11-05 18:46:44
这真的很简单。要使任何视图水平或垂直填充可用空间,只需根据需要将layout_width
/layout_height
设置为0dp
。
发布于 2018-08-28 23:06:53
<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
https://stackoverflow.com/questions/52060492
复制相似问题