我正在研究TextView中包含的ConstraintLayout

如果椭圆的长度超过maxLength,我希望ellipsize在文本的末尾添加三个点(在TextView中)。

经过对我的问题进行深入研究之后,maxLines =“1”和ellipsize =“end”似乎是最好的答案。不幸的是,它不适用于我的情况。三个点根本没有显示。

这是快照:

原始字符串为“Test for long description”(删除n)。它应该显示“测试长时间描述...”。

这是我的xml:

<TextView
    android:id="@+id/txtDescription"
    android:maxLength="24"
    android:maxLines="1"
    android:ellipsize="end"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="120dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="16dp"
    android:layout_marginBottom="8dp"
    android:text="DescriptionView"
    android:textSize="18sp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.72" />

我觉得XML中有一些覆盖ellipsize的东西,还是我错过了XML文件中一些关键的东西?

最佳答案

问题是:

android:maxLength="24"

删除它,因为您希望TextView变成椭圆形。
当TextView的宽度不足以显示整个文本时,它将变为椭圆形。我认为您不了解android:ellipsize="end"这个属性的全部含义。如果它足够宽,那么您将在末尾看不到任何点,因为不需要它们。
如果设置android:layout_width="40dp",则将看到点。
使用android:layout_width="wrap_content"时,TextView足够宽,并且不能省略。

10-05 17:46