取得Android的屏幕状态栏的高度

Rect outRect = new Rect();
        getWindow().getDecorView().getWindowVisibleDisplayFrame(outRect);
        Log.d("Status bar height","Status bar height::"+outRect.top+"::"+outRect.bottom);//StatusBarHeight=720
        

你可能感兴趣的:(取得Android的屏幕状态栏的高度)