The font size of the App does not change with the system,

Source: Internet
Author: User

The font size of the App does not change with the system,

Reprinted please indicate the source: http://www.cnblogs.com/cnwutianhao/p/6713724.html

 

In "Settings", "display", "font size", we can set the system font size.

The UI font of the App may fail to reach the desired state after being modified, and the UI layout changes.

Unrepaired effects (test model: Nexus 5 ):

Normal small super large

Effect after modification (test model: Nexus 5 ):

Normal small super large

From the comparison between the two groups, we can intuitively see that the modified App font size does not change with the system.

In fact, the implementation is very simple. You do not need to set the "textSize" in the layout file. You only need to override the getResources () method in the parent Activity:

@ Override public Resources getResources () {Resources resources Resources = super. getResources (); Configuration configuration = new Configuration (); configuration. setToDefaults (); resources. updateConfiguration (configuration, resources. getDisplayMetrics (); return resources ;}

 

Follow my Sina Weibo website to learn more about Android development!
Focus on science and technology critics, learn about science and technology, innovation, education, and maximize human wisdom and imagination!

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.