xiaole283 发表于 2021-3-19 12:56:11

分享命令"取状态栏高度"



@ int height = 0;
@ int resourceId = getApplicationContext().getResources().getIdentifier("status_bar_height", "dimen", "android");
@ if (resourceId > 0) {
   height = getApplicationContext().getResources().getDimensionPixelSize(resourceId);
@ }
@ return height;

xiaole283 发表于 2021-3-19 13:03:58

本帖最后由 xiaole283 于 2021-3-19 13:05 编辑

请删帖 原来已经有"状态栏高度"这个可读属性

顶级小白 发表于 2021-3-20 14:09:54

感谢分享!虽然有这个功能 但是,也可以学习一下java原代码写法,非常感谢!
页: [1]
查看完整版本: 分享命令"取状态栏高度"