开发者

How to abbreviate a TextView?

I have a TextView that is a single line. How can I add ellipses (...) if the text i开发者_JS百科s too long?


In your XML-file you can use: android:ellipsize="end".

In your .java code you can use: yourTextView.setEllipsize(TextUtils.TruncateAt.valueOf("END"));.

Remember to use it when you want ellipses if the text is reaching its parent's width.


Be aware of some issues by using the function: Android: Something better than android:ellipsize="end" to add "..." to truncated long Strings?

however, its still the most robust way to do it.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜