Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如果我在 TextView 中添加字符串,
this is my string
和 TextView 最大长度为 4
它应该看起来像在活动中,this...或者t...如果字符串大小大于最大长度,则意味着字符串在分配的字符串末尾继续符号。
this...
t...
任何人都可以指导我该怎么做,否则我将不得不通过编程在字符串末尾手动添加“...”。
任何帮助,将不胜感激。
为您的 TextViews 使用以下内容:
android:ellipsize="end" android:singleLine="true"