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

有效获取状态栏(StatusBar)高度

时间:2014-12-22 12:49:21      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

Class<?> c = null;
Object obj = null;
Field field = null;
int x = 0, sbar = 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());
    sbar = getResources().getDimensionPixelSize(x);
} catch (Exception e1) {
    loge("get status bar height fail");
    e1.printStackTrace();
} 

 

有效获取状态栏(StatusBar)高度

标签:

原文地址:http://www.cnblogs.com/luscinia/p/4177757.html

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