实用获取Android状态栏的方法

Posted wx_962464

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实用获取Android状态栏的方法相关的知识,希望对你有一定的参考价值。

private static int getStatusHeight(Context context)
        int statusHeight = 0;
        Rect localRect = new Rect();
        ((Activity) context).getWindow().getDecorView().getWindowVisibleDisplayFrame(localRect);
        statusHeight = localRect.top;
        if (0 == statusHeight)
            Class<?> localClass;
            try 
                localClass = Class.forName("com.android.internal.R$dimen");
                Object localObject = localClass.newInstance();
                int i5 = Integer.parseInt(localClass.getField("status_bar_height").get(localObject).toString());
                statusHeight = context.getResources().getDimensionPixelSize(i5);
             catch (Exception e) 
                e.printStackTrace();
             
        
        return statusHeight;
    


【实用】获取Android状态栏的方法

以上是关于实用获取Android状态栏的方法的主要内容,如果未能解决你的问题,请参考以下文章

如何获取Android手机底部导航栏的高度

如何获取状态栏和软键按钮栏的高度?

Android去除状态栏的方法汇总

Android中隐藏顶部状态栏的那些坑

android中怎么计算标题栏高度

Android 状态栏的设置