码迷,mamicode.com
首页 > 移动开发 > 详细

Android获取屏幕分辨率官方推荐的新方法

时间:2015-03-08 15:47:56      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

<pre name="code" class="java">		WindowManager wm = this.getWindowManager();
		Point screenAttribute = new Point();
		wm.getDefaultDisplay().getSize(screenAttribute);
		Toast.makeText(this, "Screen Width:" + screenAttribute.x +",Screen Height"+ screenAttribute.y, Toast.LENGTH_SHORT).show();

Android获取屏幕分辨率官方推荐的新方法

标签:

原文地址:http://blog.csdn.net/changhuiyuanh/article/details/44132967

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!