02-01-2013 09:22 AM
Programatically the screen size in pixels is showing as 864 x 1400. I thought this was supposed to be 768 x 1280.
This is how I'm getting it.
Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth(); // deprecated
int height = display.getHeight(); // deprecated
By the way the dpi is comming out as 359 which is expected and its considered "large" size and "xhdpi".
Oh and on my Mac, even scaled to 100% (ves-zoom 100 command), it is not 864 x 1400 or 768 x 1280, but smaller.
Anybody have info on this?