首页 > 系统 > Android > 正文

Android编程获取通知栏高度的方法

2020-04-11 11:01:52
字体:
来源:转载
供稿:网友

本文实例讲述了Android编程获取通知栏高度的方法。分享给大家供大家参考,具体如下:

这里通过反射机制获取通知栏高度

通知栏高度写在dimen文件中:

public static int getStatusBarHeight(Context context){    Class<?> c = null;    Object obj = null;    Field field = null;    int x = 0, statusBarHeight = 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());      statusBarHeight = context.getResources().getDimensionPixelSize(x);    } catch (Exception e1) {      e1.printStackTrace();    }    return statusBarHeight;}

希望本文所述对大家Android程序设计有所帮助。

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