我需要三个元素的布局:
TextView1固定宽度
TextView2动态宽度
一个固定宽度的
所有元素必须同时在屏幕上可见。
如果TextView3包含大量文本,则布局应如下:
android - 占用ConstraintLayout中元素之间的所有可用空间-LMLPHP
如果TextView2包含少量文本,则布局应如下所示:
android - 占用ConstraintLayout中元素之间的所有可用空间-LMLPHP
如何使用TextView2创建它?

最佳答案

把你的TextViews放在一个水平排列的链中,以1的偏差将它们与父母的end对齐。要确保中间的TextView不会与其他Views重叠并满足其约束,您需要为它设置app:layout_constrainedWidth="true"属性。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <TextView
            android:id="@+id/view1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintHorizontal_chainStyle="packed"
            app:layout_constraintHorizontal_bias="1"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@id/view2"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            android:text="view1"/>

    <TextView
            android:id="@+id/view2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constrainedWidth="true"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@id/view3"
            app:layout_constraintStart_toEndOf="@id/view1"
            app:layout_constraintTop_toTopOf="parent"
            android:text="view2"/>

    <TextView
            android:id="@+id/view3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@id/view2"
            app:layout_constraintTop_toTopOf="parent"
            android:text="view3"/>

</androidx.constraintlayout.widget.ConstraintLayout>

09-13 06:02