首页 > 代码库 > 获取status bar高度

获取status bar高度

    private int getStatusBarHeight() {

        Rect rectgle = new Rect();

        Window window = getWindow();

        window.getDecorView().getWindowVisibleDisplayFrame(rectgle);

        return rectgle.top;

    }

获取status bar高度