如何让 ConstraintLayout Flow 小部件包装“包含”视图,并且视图也占用剩余空间?

问题描述 投票:0回答:1

我正在尝试使用 Flow 小部件来替换我刚刚在 ConstraintLayout 内部使用的垂直方向 LinearLayout。它需要满足以下所有条件:

  1. “包含”流小部件必须包裹控件,以便最宽的视图决定流布局的大小。
  2. 但是,Flow 小部件不能大于父级的 90%(并且其“包含”视图必须小于它,尊重 Flow 小部件填充)。
  3. 如果 Flow 小部件“内部”的视图宽度小于最宽视图(考虑 Flow 小部件填充),则它们必须填充空白空间。

这可以通过 Flow 小部件来完成吗?如何实现?

我的尝试:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".TestFragment">

    <androidx.constraintlayout.helper.widget.Flow
        android:id="@+id/centerControls"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="10dp"
        app:constraint_referenced_ids="textView,editText,button"
        app:flow_verticalGap="5dp"
        app:flow_wrapMode="none"
        
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintVertical_bias="0.5"
        
        app:layout_constrainedWidth_max="wrap"

        android:background="@color/green"
        
        app:layout_constraintWidth_percent="0.9"
        />

    <TextView
        android:id="@+id/textView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="I am a text view"
        />

    <EditText
        android:id="@+id/editText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="I am an edit view"
        android:hint="I am a hint"
        />
    
    <Button
        android:id="@+id/button"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="I am a button"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

请注意,在下图中,Flow 小部件将遵守 90% 约束,但不会包裹视图。 Attempt

android android-layout android-constraintlayout constraintlayout-helper-widget-flow
1个回答
0
投票

如果您希望最宽的视图决定流布局的大小,则需要将至少一个视图宽度设置为最大值,并将另一个视图宽度设置为0dp。 并且您需要将 Flow 小部件宽度设置为“wrap_content”。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">

    <androidx.constraintlayout.helper.widget.Flow
        android:id="@+id/centerControls"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="10dp"
        app:constraint_referenced_ids="textView,editText,button"
        app:flow_verticalGap="5dp"
        app:flow_wrapMode="none"

        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"

            app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintVertical_bias="0.5"

        app:layout_constrainedWidth_max="wrap"

        android:background="@color/green"

        app:layout_constraintWidth_percent="0.9"
        tools:ignore="MissingClass" />

    <TextView
        android:id="@+id/textView"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:text="I am a text view"
        />

    <EditText
        android:id="@+id/editText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="I am an edit view"
        android:hint="I am a hint"
        />

    <Button
        android:id="@+id/button"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="I am a button"
        />

</androidx.constraintlayout.widget.ConstraintLayout>
© www.soinside.com 2019 - 2024. All rights reserved.