Android uses paint to calculate the text width

Source: Internet
Author: User

From: http://www.r-base.net/archives/442

In Android UI development, if you use XML to configure layout, we can easily implement compatibility issues with different resolutions (using dip units ). however, if you cannot use XML to configure layout in a game, it will be a lot of trouble if we are compatible with different resolutions. some coordinate calculations can also change the units of dip to pixels. when I was developing a hamster game, I found that the text was hard to calculate the width. After a period of online searching, I finally found a solution.

1234567
// Calculate the text length (in pixels) in the textview)Public Static FloatGettextviewlength (textview,StringText) {textpaint paint = textview. getpaint ();// Obtain the number of pixels when you use the paint to write text.  FloatTextlength = paint. measuretext (text );ReturnTextlength ;}

  After we get the pixel of the text through the above code, we can use some algorithms to calculate the dip unit value of the text.

For details about the conversion method between DIP (DP) and PX, refer to another blog.
Unit conversion between DIP (DP) and PX in Android

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.