一种巧妙获取Android状态栏高度的办法

这是在我研究相对布局和绝对布局的时候顺带发现的。

一种巧妙获取Android状态栏高度的办法_第1张图片


我们都知道,普通的Android界面如图所示,从上到下依次是statusbar,actionbar,内容,虚拟按键。要获取状态栏高度,一种比较常规的做法是:

    private int getStatusBarHeight(Context context) {
        int result = 0;
        int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
        if (resourceId > 0) {
            result = context.getResources().getDimensionPixelSize(resourceId);
        }
        return result;
    }

这样可以获取到状态栏的高度。

下面介绍一种有趣却又行之有效的方法。

1、新建一个Activity,什么都不用加。



2、设置根布局的id,我这里设置的root。

    private int getStatusBarHeight() {
        int loc[] = new int[2];
        mRoot.getLocationOnScreen(loc);
        if (getActionBar() != null) {
            return loc[1] - getActionBar().getHeight();
        } else if (getSupportActionBar() != null) {
            return loc[1] - getSupportActionBar().getHeight();
        }
        return 0;
    }


道理很简单,首先获取根布局相对于屏幕的y坐标,然后减去actionbar的高度,即是statusbar的高度了。

不过要注意的一点是,这个方法需要在onWindowFocusChanged之后调用,否则视图尚未加载完毕,得到的结果是0。


你可能感兴趣的:(Android)