如何防止textview扩展,但又防止单词被截断?

时间:2019-02-15 07:46:40

标签: android android-layout android-constraintlayout

到目前为止我有什么

Created UI

我想防止“位置”文本视图扩展到特定点之外。我通过在我的约束布局中使用障碍实现了这一点。现在,我想防止显示任何被此障碍切断的单词(如您在图片中看到的)。有什么办法可以做到这一点?

这对我的用例很有帮助,因为我首先显示最近的地理编码位置(辣墨西哥胡椒),因此,如果最通用的地理编码位置(最可能的国家和邮政编码)被删去了,就没关系了...

我的xml

spring:
  redis:
    host: xyz (provide host name here)
    port: 6379 (provide port here)
    jedis:
      pool:
        maxIdle: 50 # max idle connections in the pool
        minIdle: 10 # min idle connections in the pool
        maxActive: -1 # no limit to the number of active connections
        maxWait: 30000 # time limit to get a connection - only applies if maxActive is finite

1 个答案:

答案 0 :(得分:2)

您可以在TextView中添加以下属性:

android:lines="2"
android:scrollHorizontally="true"
android:ellipsize="end"
android:singleLine="true"  // or false

将在末尾附加“ ...”。