1. 首页
  2. 数据库
  3. 其它
  4. Android中获得手机屏幕大小实现代码

Android中获得手机屏幕大小实现代码

上传者: 2021-01-10 17:28:17上传 PDF文件 33KB 热度 17次
Android在自定义控件时,经常需要获得屏幕的宽高,每次都要写,不妨直接把他封装成工具类,直接拿来用,废话不说,直接上代码 /** * */ package com.example.customview; import android.content.Context; import android.util.DisplayMetrics; import android.view.WindowManager; /** * 获取手机屏幕大小 * @author * */ public class MeasureUtil { /** * 宽 * @return */ pub
用户评论