国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android編程實現獲得手機屏幕真實寬高的方法

2020-04-11 11:20:49
字體:
來源:轉載
供稿:網友

本文實例講述了Android編程實現獲得手機屏幕真實寬高的方法。分享給大家供大家參考,具體如下:

WindowManager w = activity.getWindowManager();Display d = w.getDefaultDisplay();DisplayMetrics metrics = new DisplayMetrics();d.getMetrics(metrics);// since SDK_INT = 1;widthPixels = metrics.widthPixels;heightPixels = metrics.heightPixels;try {  // used when 17 > SDK_INT >= 14; includes window decorations (statusbar bar/menu bar)  widthPixels = (Integer) Display.class.getMethod("getRawWidth").invoke(d);  heightPixels = (Integer) Display.class.getMethod("getRawHeight").invoke(d);} catch (Exception ignored) {}try {  // used when SDK_INT >= 17; includes window decorations (statusbar bar/menu bar)  Point realSize = new Point();  Display.class.getMethod("getRealSize", Point.class).invoke(d, realSize);  widthPixels = realSize.x;  heightPixels = realSize.y;} catch (Exception ignored) {}

補:改進版 (彌補了原先非支持版本的一些異常):

WindowManager w = activity.getWindowManager();Display d = w.getDefaultDisplay();DisplayMetrics metrics = new DisplayMetrics();d.getMetrics(metrics);// since SDK_INT = 1;widthPixels = metrics.widthPixels;heightPixels = metrics.heightPixels;// includes window decorations (statusbar bar/menu bar)if (Build.VERSION.SDK_INT >= 14 && Build.VERSION.SDK_INT < 17)try {  widthPixels = (Integer) Display.class.getMethod("getRawWidth").invoke(d);  heightPixels = (Integer) Display.class.getMethod("getRawHeight").invoke(d);} catch (Exception ignored) {}// includes window decorations (statusbar bar/menu bar)if (Build.VERSION.SDK_INT >= 17)try {  Point realSize = new Point();  Display.class.getMethod("getRealSize", Point.class).invoke(d, realSize);  widthPixels = realSize.x;  heightPixels = realSize.y;} catch (Exception ignored) {}

希望本文所述對大家Android程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 略阳县| 十堰市| 井研县| 天峨县| 桓仁| 新民市| 朝阳市| 思茅市| 昌邑市| 界首市| 哈巴河县| 同仁县| 博乐市| 清流县| 木里| 休宁县| 浮山县| 乐亭县| 林周县| 泗阳县| 阿拉尔市| 宣城市| 澎湖县| 灌阳县| 浮山县| 分宜县| 呈贡县| 太原市| 蓬安县| 莱西市| 通海县| 翁源县| 工布江达县| 古田县| 平原县| 体育| 江西省| 崇阳县| 龙江县| 怀远县| 鞍山市|