TextView limit the maximum number of rows, the minimum number of rows, the word count over the "..." means

Source: Internet
Author: User

Minimum number of rows:

Android:minlines = "2"//minimum number of rows is 2

Maximum number of rows:

Android:maxlines = "2"//maximum number of rows is 2

The word "..." means:

Android:ellipsize = "End"//ellipsis at the end

Ellipsize usage:

1. 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"

2, 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

TextView limit the maximum number of rows, the minimum number of rows, the word count over the "..." means

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.