Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to know exactly how big the screen is on the device in real units of length so I can calculate the acceleration due to gravity in pixels per millisecond.

Is there a method somewhere in the Android API for this?

share|improve this question

3 Answers

up vote 35 down vote accepted

Use the following:

    DisplayMetrics dm = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(dm);
    double x = Math.pow(dm.widthPixels/dm.xdpi,2);
    double y = Math.pow(dm.heightPixels/dm.ydpi,2);
    double screenInches = Math.sqrt(x+y);
    Log.d("debug","Screen inches : " + screenInches);
share|improve this answer
Works for me :) – Kevin Dec 13 '11 at 17:30
3  
I have ~15 test devices and it fails on some of them, e.g it is not working on some models like Motorola Milestone or ZTE phones. – STeN Feb 6 '12 at 15:21
Do the failed devices models have custom ROM or the default one that the manufacturer provided? Perhaps it's something with the ROM? – kilaka Apr 2 '12 at 11:49
2  
Returned value isn't precise, because getMetrics (and display.getWidht(), or display.getHeight()) returns value that is available to your application (for example, it doesn't contains action bar height). So, on 1280x800 screen you can get value 1260x800 or 1280x780 and so on. – Dmitry Zaitsev Jun 25 '12 at 18:20
getWidth/getHeight are depricated now. You can use getSize instead, but I am not sure if they work correctly on all devices (see comment of STeN). – Michael Biermann Dec 9 '12 at 8:15

android developers screen info.

use xdpi * widthPixels and ydpi * heightPixels might get you what you want i think.

share|improve this answer
2  
Hi, some models returns wrong xdpi and ydpi values, see my comment. – STeN Feb 6 '12 at 15:22

You need to use the screen density to calculate this.

Context.getResources().getDisplayMetrics().density

According to the documentation:

The logical density of the display. This is a scaling factor for the Density Independent Pixel unit, where one DIP is one pixel on an approximately 160 dpi screen (for example a 240x320, 1.5"x2" screen), providing the baseline of the system's display. Thus on a 160dpi screen this density value will be 1; on a 120 dpi screen it would be .75; etc.

This value does not exactly follow the real screen size (as given by xdpi and ydpi, but rather is used to scale the size of the overall UI in steps based on gross changes in the display dpi. For example, a 240x320 screen will have a density of 1 even if its width is 1.8", 1.3", etc. However, if the screen resolution is increased to 320x480 but the screen size remained 1.5"x2" then the density would be increased (probably to 1.5).

share|improve this answer
2  
Use xdpi and ydpi as described by the other poster. The density is deliberately not an absolute mapping to the physical screen size, but a more abstract unit that can be quantized to a small number of discreet values (currently 120dpi, 160dpi, 240dpi). – hackbod Feb 4 '10 at 8:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.