我正在尝试使用 Flow 小部件来替换我刚刚在 ConstraintLayout 内部使用的垂直方向 LinearLayout。它需要满足以下所有条件:
这可以通过 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>
如果您希望最宽的视图决定流布局的大小,则需要将至少一个视图宽度设置为最大值,并将另一个视图宽度设置为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>