计算NavigationBar高度一种方法

遇到一个计算位置的问题。针对虚拟按键机器,需要判断底部导航栏高度。

用了 Stack Overflow 上面高赞答案的获取NavigationBar高度方法,发现在有一些国产设备上会返回为0,造成适配问题。

int navigationBarHeight = 0;
boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);
if (!hasMenuKey && !hasBackKey) {
    Resources resources = context.getResources();
    int resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android");
    navigationBarHeight = resources.getDimensionPixelSize(resourceId);
}
return navigationBarHeight;

换了一种方式来实现,解决了这个问题。 

Point realPoint = new Point();  
    ((Activity)context).getWindowManager().getDefaultDisplay().getRealSize(realPoint);

int realHeight = realPoint.y;

int height = ((Activity)context).getWindowManager().getDefaultDisplay().getHeight();

return realHeight - height;

 

你可能感兴趣的:(Android)