Introduction to several property values for Android ellipsize

Source: Internet
Author: User
Tags word wrap

In the development process, we want to see the TextView content is too long word wrap, but call measuretext function found that the return value is not accurate, the unit is not sure, is pixel or dip, are not allowed. Later think of TextView in a content too long plus ellipsis attribute, that is, ellipsize, can be more lazy to solve this problem, haha ~

Use the following:

in XML

Android:ellipsize = "End" ellipsis at the end

Android:ellipsize = "Start" ellipsis at the beginning

Android:ellipsize = "Middle" ellipsis in the middle

Android:ellipsize = "Marquee" marquee

It's best to add a constraint Android:singleline = "true"

Of course, you can also use code statements

Tv.setellipsize (TextUtils.TruncateAt.valueOf ("END"));

Tv.setellipsize (TextUtils.TruncateAt.valueOf ("START"));

Tv.setellipsize (TextUtils.TruncateAt.valueOf ("Middle"));

Tv.setellipsize (TextUtils.TruncateAt.valueOf ("MARQUEE"));

It is best to add a constraint tv.setsingleline (true);

This attribute is not only available for TextView, but also for Editext, but it does not support marquee


Introduction to several property values for Android ellipsize

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.