项目中用到了,网上找到一段代码,能够有效的获取状态栏的高度,记录备忘。
/**
* 获取状态栏高度
*
* @return
*/
public int getStatusBarHeight()
{
Class<?> c = null;
Object obj = null;
java.lang.reflect.Field field = null;
int x = 0;
int 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 = getResources().getDimensionPixelSize(x);
return statusBarHeight;
}
catch (Exception e)
{
e.printStackTrace();
}
return statusBarHeight;
}
本文介绍了一种在项目中有效获取状态栏高度的方法,并提供了一段实现该功能的具体代码示例。
1007

被折叠的 条评论
为什么被折叠?



