当前位置: 首页 > article >正文

Android 获取屏幕物理尺寸

注:编译 sdk 需要使用 30

因为引入了 WindowMetrics、uild.VERSION_CODES.R 新 sdk 才存在的类和属性

某些场景处理 view ,对 view 显示的位置要求比较精确,通常我们使用context.getResources().getDisplayMetrics().widthPixels 获取到的宽、高是不包含状态栏等高度,在计算坐标、偏移量时可能就不精确了,那么就需要获取设备的物理尺寸——包含状态栏高度等不显示区域。

import android.graphics.Point;
import android.graphics.Rect;
import android.util.Pair;
import android.util.Size;
import android.view.WindowManager;
import android.view.WindowMetrics;

import androidx.annotation.RequiresApi;

@RequiresApi(api = Build.VERSION_CODES.R)
private static Size getPhysicalScreenSize30(Context context) {
    WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    if (windowManager != null) {
        WindowMetrics windowMetrics = windowManager.getCurrentWindowMetrics();
        Rect bounds = windowMetrics.getBounds();
        return new Size(bounds.width(), bounds.height());
    }
    return new Size(-1,-1);
}

@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
private static Size getPhysicalScreenSize29(Context context) {
    WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    if (windowManager != null) {
        Point size = new Point();
        windowManager.getDefaultDisplay().getRealSize(size);
        return new Size(size.x, size.y);
    }
    return new Size(-1,-1);
}

public static Pair<Integer, Integer> getPhysicalScreenSize(Context context) {
    int w = -1, h = -1;
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
        Size size = getPhysicalScreenSize30(context);
        w = size.getWidth();
        h = size.getHeight();
    } else {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            Size size = getPhysicalScreenSize29(context);
            w = size.getWidth();
            h = size.getHeight();
        }
    }

    if (w != -1 && h != -1) {
        return new Pair<>(w, h);
    }

    //最不济的情况就返回非物理尺寸吧
    w = context.getResources().getDisplayMetrics().widthPixels;
    h = context.getResources().getDisplayMetrics().heightPixels;
    return new Pair<>(w, h);
}

http://www.kler.cn/a/444342.html

相关文章:

  • 搜索召回概要
  • 【k8s集群应用】K8S二进制安装大致步骤(简略版)
  • go-zero(十四)实践:缓存一致性保证、缓存击穿、缓存穿透与缓存雪崩解决方案
  • Docker:Dockerfile(补充四)
  • 【笔记】深度学习模型评估指标
  • Ubuntu搭建ES8集群+加密通讯+https访问
  • 建站技术 | HUGO + GitHub 创建博客页面
  • 若依前端挂Nginx、打包部署运行!!!!
  • C# 项目无法加载 DLL“SQLite.Interop.DLL”: 找不到指定的模块
  • Leetcode 409. Longest Palindrome
  • BERT模型入门(1)BERT的基本概念
  • 条件随机场(CRF)详解:原理、算法与实现(深入浅出)
  • 【软件工程】简答题系列(山东大学·软院考试专属)
  • pytest接口关联框架封装
  • 将三个list往一个excel表的三个sheet中写入,能用多线程提高写入速度
  • Stream的并行方法parallelStream使用和常见问题
  • python飞机大战游戏.py
  • 详细指南:在Ubuntu 20.04上安装和配置Orbbec SDK及USB设备权限
  • 太速科技-428-基于XC7Z100+ADRV9009的双收双发无线电射频板卡
  • 《Django 5 By Example》读后感
  • 【uniapp】实战一人员交接班
  • 【go语言】reflect包与类型推断
  • 电视机通用遥控技术标准正式公布
  • 开源 AI 智能名片小程序源码在个人 IP 打造中的应用与价值
  • 从 Promise 到 Axios:轻松解锁异步编程
  • WSL Ubuntu