码迷,mamicode.com
首页 > 移动开发 > 详细

【实用】获取Android状态栏的方法

时间:2014-09-17 01:11:41      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:android   io   os   java   ar   for   sp   cti   on   

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;
    }


【实用】获取Android状态栏的方法

【实用】获取Android状态栏的方法

标签:android   io   os   java   ar   for   sp   cti   on   

原文地址:http://blog.csdn.net/wx_962464/article/details/39328147

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!