当前位置:   article > 正文

安卓获取状态栏(Status Bar)高度_redmi note 11上使用screenutils.getstatusbarheight(thi

redmi note 11上使用screenutils.getstatusbarheight(this)没有获取到状态栏的值

本文首发地址 https://h89.cn/archives/190.html
最新更新地址 https://gitee.com/chenjim/chenjimblog

应用开发过程中,我们经常需要动态计算状态栏高度,本文介绍几种方法。

方法一 直接使用24dp

Android 9.0 frameworks/base/core/res/res/中有如下

    <!-- Height of the status bar -->
    <dimen name="status_bar_height">@dimen/status_bar_height_portrait</dimen>
    <!-- Height of the status bar in portrait -->
    <dimen name="status_bar_height_portrait">24dp</dimen>
    <!-- Height of the status bar in landscape -->
    <dimen name="status_bar_height_landscape">@dimen/status_bar_height_portrait</dimen>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

可以看到status_bar_height只有一个定值24dp,因此可以直接使用

Android 9.0的frameworks/base/core/res/res目录源码:https://android.googlesource.com/platform/frameworks/base/+archive/refs/heads/pie-release-2/core/res/res.tar.gz
同理 navigation_bar_height 可以直接用48dp

要想做到完美兼容,不建议直接用固定值,部分定制设备可能有其他值。

方法二 getDimensionPixelSize

获取系统中"status_bar_height"的值,方法如下

public static int getStatusBarHeight(Context context) {
    Resources resources = context.getResources();
    int resourceId = resources.getIdentifier("status_bar_height", "dimen", "android");
    int height = resources.getDimensionPixelSize(resourceId);
    return height;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

方法三 利用反射

public static int getStatusHeight(Activity activity) {
    int statusHeight = 0;
    try {
        Class<?> localClass = Class.forName("com.android.internal.R$dimen");
        Object localObject = localClass.newInstance();
        int h = Integer.parseInt(localClass.getField("status_bar_height").get(localObject).toString());
        statusHeight = activity.getResources().getDimensionPixelSize(h);
    } catch (Exception e) {
        e.printStackTrace();
    }
    return statusHeight;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

本文到此结束,如果你在使用遇到问题,欢迎留言讨论。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/134347
推荐阅读
相关标签
  

闽ICP备14008679号