当前位置: 代码迷 >> Android >> 怎么获取屏的分辨率信息?
  详细解决方案

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

热度:87   发布时间:2016-05-01 22:20:52.0
如何获取屏的分辨率信息??
通过什么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();
  相关解决方案