Android 布局:如何根据周围的文本视图来椭圆化 TextView?
Android Layout: How to ellipsize TextView depending on surrounding textviews?
我需要你的帮助来设计满足以下几个要求的布局:
要求:
TextA(绿色):
- 一直都在。
- 长度可能不同(1 到 50 个字符)。
- 是唯一一个当内容对于 space.
而言太长时必须省略的内容
TextB(黄色):
- 可以为空。 (宽度:0dp)
- 长度可能不同(0 到 10 个字符)。
- 如果不为空则必须完全可见(不是ellipsized/truncated)
- 必须贴在 TextA 的右侧。
TextC(红色):
- 一直都在。
- 具有固定宽度(即:100dp)。
- 在parent中总是靠右。
注意:TextA、TextB & 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" />
我需要你的帮助来设计满足以下几个要求的布局:
要求:
TextA(绿色):
- 一直都在。
- 长度可能不同(1 到 50 个字符)。
- 是唯一一个当内容对于 space. 而言太长时必须省略的内容
TextB(黄色):
- 可以为空。 (宽度:0dp)
- 长度可能不同(0 到 10 个字符)。
- 如果不为空则必须完全可见(不是ellipsized/truncated)
- 必须贴在 TextA 的右侧。
TextC(红色):
- 一直都在。
- 具有固定宽度(即:100dp)。
- 在parent中总是靠右。
注意:TextA、TextB & 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" />