Android 布局:如何根据周围的文本视图来椭圆化 TextView?

Android Layout: How to ellipsize TextView depending on surrounding textviews?

我需要你的帮助来设计满足以下几个要求的布局:

要求:

注意:TextATextB & TextC 是 TextView。

我的问题与 this question 类似,但有 3 个部分而不是 2 个部分,而且要求略有不同。

有人知道如何实现吗?

谢谢

您的问题已得到解答 here

但该解决方案将使您的文本视图具有相同的宽度。 记得只为中间 textview.

使用 android:layout_weight="1"

您无法在 xml 中完成此 100%,因为您需要有条件地将 TextB 上的可见性设置为 View.GONE。但是,使用 ConstraintLayout,您可以像这样完成其余的行为: layout preview

<?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/TextA"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="8dp"
    android:text="TextAaekfnvauefoviqwejnoiwjeofijnweoimivejmgpiwvmpgr"
    android:ellipsize="end"
    android:maxLines="1"
    android:textColor="@color/green"
    app:layout_constraintEnd_toStartOf="@+id/TextC"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    android:id="@+id/TextC"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginRight="8dp"
    android:text="TextC"
    android:textColor="@color/red"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    android:id="@+id/TextB"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="8dp"
    android:text="TextB"
    android:textColor="@color/yellow"
    app:layout_constraintEnd_toStartOf="@+id/TextC"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toEndOf="@+id/TextA"
    app:layout_constraintTop_toTopOf="parent" />