最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android中獲得手機(jī)屏幕大小實(shí)現(xiàn)代碼

 更新時(shí)間:2015年06月09日 11:45:43   投稿:junjie  
這篇文章主要介紹了Android中獲得手機(jī)屏幕大小實(shí)現(xiàn)代碼,Android開(kāi)發(fā)中經(jīng)常需要獲得屏幕的寬高,本文直接封裝成一個(gè)工具類,需要的朋友可以參考下

Android在自定義控件時(shí),經(jīng)常需要獲得屏幕的寬高,每次都要寫,不妨直接把他封裝成工具類,直接拿來(lái)用,廢話不說(shuō),直接上代碼

/**
 * 
 */
package com.example.customview;

import android.content.Context;
import android.util.DisplayMetrics;
import android.view.WindowManager;

/**
 * 獲取手機(jī)屏幕大小
 * @author 
 *
 */
public class MeasureUtil {
 
 /**
 * 寬
 * @return
 */
 public static int getWidth(Context context){
 WindowManager wm=(WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
 DisplayMetrics outMetrics = new DisplayMetrics();
 wm.getDefaultDisplay().getMetrics(outMetrics);
 return outMetrics.widthPixels;
 }
 
 /**
 * 高
 * @return
 */
 public static int getHeight(Context context){
 WindowManager wm=(WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
 DisplayMetrics outMetrics = new DisplayMetrics();
 wm.getDefaultDisplay().getMetrics(outMetrics);
 return outMetrics.heightPixels;
 }

}

相關(guān)文章

最新評(píng)論

西乌珠穆沁旗| 永清县| 调兵山市| 香港 | 忻城县| 晋江市| 三门县| 长岛县| 湛江市| 江永县| 贡觉县| 原平市| 江西省| 定州市| 浦东新区| 昭觉县| 石河子市| 柳林县| 兰西县| 商洛市| 依兰县| 都匀市| 柳林县| 宽甸| 开封县| 龙川县| 萝北县| 洪湖市| 公安县| 沂源县| 绩溪县| 福安市| 河池市| 江北区| 建瓯市| 行唐县| 麻阳| 施秉县| 社旗县| 保德县| 右玉县|