本文介绍了如何获得屏幕尺寸并作出回应?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我建立一个应用程序为Android蜂窝和定期phones.I希望能够来测试屏幕具有一定规模并作出回应以某种方式。我将如何去有关获取屏幕尺寸在code?

解决方案

 显示mDisplay = activity.getWindowManager()getDefaultDisplay()。
INT宽度= mDisplay.getWidth();
INT高= mDisplay.getHeight();
 

I am building a application for android honeycomb and regular phones.I want to be able to test if the screen is a certain size and respond to it a certain way. How would i go about getting the screen size in code?

解决方案
Display mDisplay= activity.getWindowManager().getDefaultDisplay();
int width= mDisplay.getWidth();
int Height= mDisplay.getHeight();

这篇关于如何获得屏幕尺寸并作出回应?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 10:43