首页 > 系统 > Android > 正文

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

2019-10-24 20:28:51
字体:
来源:转载
供稿:网友
这篇文章主要介绍了Android编程获取通知栏高度的方法,涉及Android针对通知栏属性相关操作技巧,需要的朋友可以参考下
 

本文实例讲述了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程序设计有所帮助。



注:相关教程知识阅读请移步到Android开发频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表