Android P上判断是否刘海屏的方法

2018-09-27  本文已影响0人  小智在不在
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
    WindowInsets windowInsets = decorView.getRootWindowInsets();    
    if (windowInsets != null) {
        DisplayCutout displayCutout = windowInsets.getDisplayCutout();        
        if (displayCutout != null) {            
            List<Rect> rects = displayCutout.getBoundingRects();            
            //通过判断是否存在rects来确定是否刘海屏手机
            if (rects != null && rects.size() > 0) {
                isNotchScreen = true;
            }
        }
    }
}
上一篇下一篇

猜你喜欢

热点阅读