首页 > 学院 > 开发设计 > 正文

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

2019-11-14 22:18:46
字体:
来源:转载
供稿:网友
有效获取状态栏(StatusBar)高度
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();} 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表