获取通知栏高度

之前上网找了很多方法,想获取到通知栏的高度.但都不行.有时应用做成全屏确实不方便,例如用在一些平板上,那些该死的平板的虚拟按键和通知栏是放在一起的.这时候就需要获取他的高度了.代码如下,还是谢谢我旧公司的高手程序猿.将自己之前发在eoe论坛的帖子copy过来而已,顺便把楼下的一同分享的也搬过来.

这是自己的

public static int getStatusBarHeight(Context context){
        Class c = null;
        Object obj = null;
        Field field = null;
        int x = 0, statusBarHeight = 0;
        try {
            c = Class.forName("com.android.internal.R$dimen");
            obj = c.newInstance();
            field = c.getField("status_bar_height");
            x = Integer.parseInt(field.get(obj).toString());
            statusBarHeight = context.getResources().getDimensionPixelSize(x);
        } catch (Exception e1) {
            e1.printStackTrace();
        } 
        return statusBarHeight;
    }

有人试过说这个不错:

private int getStatusBarHeight(){
   Rect rect = new Rect();
   getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);
   return rect.top;
}

也有人分享这个,但是没试过:

public static int getStatusBarHeight() {
        return Resources.getSystem().getDimensionPixelSize(
                Resources.getSystem().getIdentifier("status_bar_height", "dimen", "android"));
    }


你可能感兴趣的:(Android,界面)