标签: android
我正在为android蜂窝和常规手机构建应用程序。我希望能够测试屏幕是否具有特定大小并以某种方式响应它。我如何在代码中获取屏幕尺寸?
答案 0 :(得分:2)
Display mDisplay= activity.getWindowManager().getDefaultDisplay(); int width= mDisplay.getWidth(); int Height= mDisplay.getHeight();
答案 1 :(得分:1)
getWindowManager().getDefaultDisplay()
您可能还想阅读此内容:http://d.android.com/guide/practices/screens_support.html