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;

    }
相關文章
相關標籤/搜索