Height of screen in portrait mode only?
How can I get the height of the device for portrait mode? I have to create a bitmap (which is zoomable) and I just want to get a rough idea what the tallest height should be.
getResources().getDisplayMetrics().heightPixels;
do开发者_开发问答es the above return the height, in portrait mode only?
I'm not binding my UI to this absolute value, it's just a rough fit,
Thanks
Display d = getWindowManager().getDefaultDisplay();
int potraitHeight = Math.max(d.getWidth(),d.getHeight());
精彩评论