状态栏即statusBar,导航栏即某些手机底部有返回键的虚拟键那一栏,叫navigationBar。
1. 获取顶部statusBar高度
private int getStatusBarHeight() {
Resources resources = mActivity.getResources();
int resourceId = resources.getIdentifier("status_bar_height", "dimen","android");
int height = resources.getDimensionPixelSize(resourceId);
Log.v("dbw", "Status height:" + height);
return height;
}
2. 获取底部navigationBar高度
private int getNavigationBarHeight() {
Resources resources = mActivity.getResources();
int resourceId = resources.getIdentifier("navigation_bar_height","dimen", "android");
int height = resources.getDimensionPixelSize(resourceId);
Log.v("dbw", "Navi height:" + height);
return height;
}
3. 获取设备是否存在NavigationBar
//获取是否存在NavigationBar
public static boolean checkDeviceHasNavigationBar(Context context) {
boolean hasNavigationBar = false;
Resources rs = context.getResources();
int id = rs.getIdentifier("config_showNavigationBar", "bool", "android");
if (id > 0) {
hasNavigationBar = rs.getBoolean(id);
}
try {
Class systemPropertiesClass = Class.forName("android.os.SystemProperties");
Method m = systemPropertiesClass.getMethod("get", String.class);
String navBarOverride = (String) m.invoke(systemPropertiesClass, "qemu.hw.mainkeys");
if ("1".equals(navBarOverride)) {
hasNavigationBar = false;
} else if ("0".equals(navBarOverride)) {
hasNavigationBar = true;
}
} catch (Exception e) {
}
return hasNavigationBar;
}
以上转自:https://www.jianshu.com/p/c1f2a3849d6e
需要注意的是:
1)没显示导航栏的,方法二还是会返回导航栏的值,而不是返回0,所以要结合方法三使用
2)如果是沉浸式透明的导航栏,如全面屏手机,三星S8,方法三返回true,即存在导航栏,所以如果有些布局是以距离底部多高为标注,就要注意了!透明导航栏实际上是不影响布局的。暂没找到方法判断是否是透明导航栏,有的请指教,感谢
3)延续问题2),三星S8的导航栏是可以在透明和不透明之间切换的,如果布局要根据它的切换实时变化,怎么去监听做相应处理?
问题2、3未解
因为我自己遇到的问题,最后是去度量某个view的坐标,以坐标做基准,而不是以屏幕底部为基准,这样搞定了。
2018.4.28补充
下面方法好像可以判断?全面屏不行(三星S8),非全面屏暂没找到透明导航栏的测试
转自https://blog.csdn.net/huangyanan1989/article/details/25879887
WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION
public boolean existFlag(int flags){
WindowManager.LayoutParams attrs= getWindow().getAttributes();
if(attrs.flags ==( (attrs.flags&~flags) | (flags&flags))){
return true;
}
return false;
}