首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

怎么获取屏的分辨率信息?

2012-03-08 
如何获取屏的分辨率信息??通过什么api,谢谢[解决办法]First you need to get the WindowManager by :Windo

如何获取屏的分辨率信息??
通过什么api,谢谢

[解决办法]

 First you need to get the WindowManager by :

 WindowManager wm = getSystemService(Context.WINDOW_SERVICE);

 Next use the method to retrieve a Display object:

 Display d = wm.getDefaultDisplay();

 and finally the resolution:

 int height = d.getHeight();
 int width = d.getWidth();

热点排行