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

 

posted on 2014-12-22 11:05  Luscinia  阅读(1405)  评论(0编辑  收藏  举报