在设置沉浸式时,华为手机底部导航栏会覆盖app的真实内容,提供以下解决方案:
判断是否有导航栏并且获取高度,然后给window的content设置padding
public static int getNavigationBarHeight(Context context) {
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");//获取NavigationBar的高度
int height = resources.getDimensionPixelSize(resourceId);
return height;
} else {
return 0;
}
}
判断是否存在导航栏,并且返回高度,然后在activity的基类里设置
getWindow().getDecorView().findViewById(android.R.id.content).setPadding(0, 0, 0, getNavigationBarHeight(this));
这样就能完美适应了,沉浸式改怎么做就这么做