Android-pixel density and screen fit

Source: Internet
Author: User

pixel density and screen fit


This address: Http://blog.csdn.net/caroline_wendy


The variety of Android devices is often required to adapt to different screens to get the hardware screen pixel and density in a way:

        Displaymetrics dm = new Displaymetrics ();        Getwindowmanager (). Getdefaultdisplay (). Getmetrics (DM);        int widthpixels= dm.widthpixels;        int heightpixels= dm.heightpixels;        float density = dm.density;        float dpi = dm.densitydpi;        float screenwidth = widthpixels * density;        float screenheight = heightpixels * density;        LOG.D (TAG, "screen width:" + screenwidth);        LOG.D (TAG, "screen height:" + screenheight);        LOG.D (TAG, "screen density:" + density);        LOG.D (TAG, "screen dpi:" + dpi);

the Television (TV) side of the adaptation is special, large, medium and small screen between the large difference, according to the smallest screens width to adapt, select the minimum value between the wide height:such as: The minimum side is close to 1080, can be adapted ( greater than or equal to the value of the match):
Values-sw1080dp




Android-pixel density and screen fit

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.