Android屏幕硬件宽高和当前View显示区域的宽高,Kotlin

Android屏幕硬件宽高和当前View显示区域的宽高,Kotlin

Kotlin 复制代码
    private fun getScreenSize() {
        if (Build.VERSION.SDK_INT > Build.VERSION_CODES.R) {
            //屏幕实际显示区域的宽高,包含系Android统的状态栏和导航栏,可以简单理解这就是屏幕硬件尺寸固定的宽高。
            val width = windowManager.currentWindowMetrics.bounds.width()
            val height = windowManager.currentWindowMetrics.bounds.height()
            Log.d(TAG, "硬件屏幕固定的尺寸 宽=$width 高=$height")
            val insets: Insets = windowManager.currentWindowMetrics.windowInsets.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars())
            val w = width - insets.right - insets.left
            val h = height - insets.bottom - insets.top
            Log.d(TAG, "减去Android系统(状态栏+导航栏),当前View显示区域 宽=${w} 高=${h}")
        } else {
            //减去Android系统(状态栏+导航栏)后的高度和宽度。
            val displayMetrics = resources.displayMetrics
            val width = displayMetrics.widthPixels
            val height = displayMetrics.heightPixels
            Log.d(TAG, "width: $width height:$height")
        }
    }

特别注意,以上获取的宽高尺寸,随着屏幕旋转/横竖屏切换后,会实时更新。比如,竖屏下宽是1080,高是1920;切换到横屏,那么此时返回的宽是1920,高是1080。

Android获取设备屏幕宽高pix值的两个方法_android返回的pix-CSDN博客文章浏览阅读812次。private void get1() { Resources resources = this.getResources(); DisplayMetrics dm = resources.getDisplayMetrics(); int width = dm.widthPixels; int height = dm.heig..._android返回的pixhttps://blog.csdn.net/zhangphil/article/details/80014827Android测量View宽和高的一般通用方法_安卓获取view的宽高-CSDN博客文章浏览阅读1.3k次。Android测量View宽和高的一般通用方法众所周知Android在onCreate里面如果直接对一个View进行getWidth,getHeight时候,得到到的值全部是0,这样拿不到View的宽和高的值,但有时候又必须在初始化阶段获取一个View的宽和高,现在给出一个基本的通用方法: int w = View.MeasureSpec.makeMeasureSpec(0, Vie_安卓获取view的宽高https://blog.csdn.net/zhangphil/article/details/79939650

相关推荐
似霰28 分钟前
安卓智能指针sp、wp、RefBase浅析
android·c++·binder
大风起兮云飞扬丶28 分钟前
Android——网络请求
android
干一行,爱一行31 分钟前
android camera data -> surface 显示
android
断墨先生1 小时前
uniapp—android原生插件开发(3Android真机调试)
android·uni-app
无极程序员2 小时前
PHP常量
android·ide·android studio
萌面小侠Plus3 小时前
Android笔记(三十三):封装设备性能级别判断工具——低端机还是高端机
android·性能优化·kotlin·工具类·低端机
慢慢成长的码农3 小时前
Android Profiler 内存分析
android
大风起兮云飞扬丶3 小时前
Android——多线程、线程通信、handler机制
android
L72564 小时前
Android的Handler
android
清风徐来辽4 小时前
Android HandlerThread 基础
android