码迷,mamicode.com
首页 > 其他好文 > 详细

获取状态栏高度

时间:2015-12-05 19:20:23      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

Android中获取状态栏高度的两种方法:

     public static int getStatusHeight(Context context)
     {

        int statusHeight = 0;
        try
        {
            Class<?> clazz = Class.forName("com.android.internal.R$dimen");
            Object object = clazz.newInstance();
            int resourceId = Integer.parseInt(clazz.getField("status_bar_height").get(object).toString());
            statusHeight = context.getResources().getDimensionPixelSize(resourceId);
        } 
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return statusHeight;
     }
     
     public static int getStatusHeight2(Context context) 
     {
         int statusHeight = 0;
         int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
         if (resourceId > 0) 
         {
             statusHeight = context.getResources().getDimensionPixelSize(resourceId);
         }
         return statusHeight;
    }

 

获取状态栏高度

标签:

原文地址:http://www.cnblogs.com/rainboy2010/p/5022003.html

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