The font size of the Android mobile phone varies with the resolution.

Source: Internet
Author: User

Two solutions:

I,

1. obtain different font sizes based on different resolutions.
Create in res
In values-480x320/strings. XML, set <dimen name = "text_size"> 30px </dimen>
And
In values-800x400/strings. XML, set <dimen name = "text_size"> 30px </dimen>

The font size of 480x320 and X is 30px and 40px respectively;

This is called in a Java file.

Int sizeoftext = (INT) This. getresources (). getdimension (R. dimen. text_size );

II,

1. Obtain the view width in onsizechanged of the view. The default width is 320. Therefore, a scaling ratio is calculated.
Rate = (float) W/320 W is the actual width
2. Then, when setting the font size, paint. settextsize (INT) (8 * rate); 8 is the font size to be set when the resolution width is 320
Actual font size = default font size x rate

Java Code
    1. <Textview
    2. Android: layout_width ="Fill_parent"
    3. Android: layout_height ="Wrap_content"
    4. Android: text ="@ String/hello"
    5. Android: textsize ="@ Dimen/text_size"
    6. />

Layout multi-resolution adaptation

Original article: http://407827531.iteye.com/blog/973688

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.