如何写精华回答,获更多曝光?
发布
使用getWindowAvoidArea来获取状态栏和导航栏高度。
先通过window.getLastWindow获取当前窗。
let avoidArea = windowClass.getWindowAvoidArea(type);
avoidArea.bottomRect.height为导航栏高度,avoidArea.topRect.height为状态栏高度
当type = window.AvoidAreaType.TYPE_NAVIGATION_INDICATOR时,avoidArea.bottomRect.height=91
当type = window.AvoidAreaType.TYPE_CUTOUT时,avoidArea.topRect.height=72
当type = window.AvoidAreaType.TYPE_SYSTEM时,avoidArea.topRect.height=126,avoidArea.bottomRect.height=0
获取到的值都不一样,请问哪个为真实的导航栏与状态栏高度?