美文网首页
Android 屏幕适配-刘海屏适配

Android 屏幕适配-刘海屏适配

作者: 刘小厨 | 来源:发表于2020-04-04 15:27 被阅读0次

    承接Android 屏幕适配

    说明:本文仅为简单总结google官方的刘海平适配方案如需具体机型适配,请自行移步github或厂商官方说明
    附部分厂商文档说明地址:
    华为:https://devcenter-test.huawei.com/consumer/cn/devservice/doc/50114
    小米:https://dev.mi.com/console/doc/detail?pId=1293
    Oppo:https://open.oppomobile.com/service/message/detail?id=61876
    Vivo:https://dev.vivo.com.cn/documentCenter/doc/103

    Android 刘海屏适配的主要思路如下:

    1. 首先我们做刘海屏适配,有一个前提,就是我们的窗口使用了全面屏的方式显示,

    一般我们在Activity的onCreate()方法中在setContentView()方法调用之前,用代码设置全面屏显示,代码如下:

    //设置全屏
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    Window window = getWindow();
    window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    

    2.我们需要判断我们到底需不需要做刘海屏适配,大概需要考虑以下几点:

    大概流程

    3.判断手机是否是刘海屏手机,判断条件如下:

      private boolean hasDisplayCutout(Window window) {
    
            DisplayCutout displayCutout;
            View rootView = window.getDecorView();
            WindowInsets insets = rootView.getRootWindowInsets();//如果用模拟器调试,这里可能取到的是null
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P && insets != null){
                displayCutout = insets.getDisplayCutout();
                if (displayCutout != null){
                    if (displayCutout.getBoundingRects() != null && displayCutout.getBoundingRects().size() > 0 && displayCutout.getSafeInsetTop() > 0){
                        return true;
                    }
                }
            }
            return false; 
        }
    

    4.设置内容区域延伸至刘海屏区域,并设置沉浸式

    此步骤也需要在在Activity的onCreate()方法中在setContentView()方法调用之前设置
    状态栏如果我们不需要将内容延伸至刘海屏区域,或者没有做沉浸式状态栏的处理,一般是不需要做适配的,一般我们设置将内容延伸至刘海屏区域和设置沉浸式状态栏的方式如下:

     //让内容区域延伸进刘海
                WindowManager.LayoutParams params = window.getAttributes();
                /**
                 *  * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT 全屏模式,内容下移,非全屏不受影响
                 *  * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES 允许内容去延伸进刘海区
                 *  * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER 不允许内容延伸进刘海区
                 */
                params.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
                window.setAttributes(params);
    
                //设置成沉浸式
                int flags = View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
                int visibility = window.getDecorView().getSystemUiVisibility();
                visibility |= flags; //追加沉浸式设置
                window.getDecorView().setSystemUiVisibility(visibility);
    

    5.防止按钮等控件被刘海屏遮挡

    这个没有太好的办法,首先在设计时候就要注意规避此类问题,其次只能通过控件的LayoutParams设置magin属性,或者父控件或者根布局的LayoutParams设置padding值等方式规避此类问题,如果需要设置属性,那么我们需要获取刘海屏的高度

    6. 获取刘海屏的高度

    代码如下:

    //通常情况下,刘海的高就是状态栏的高
        public int heightForDisplayCutout(){
            int resID = getResources().getIdentifier("status_bar_height", "dimen", "android");
            if (resID > 0){
                return getResources().getDimensionPixelSize(resID);
            }
            return 96;
        }
    

    最后附上一个工具类:

    public class Utils {
    
        /**
         * 是否是刘海屏手机
         * @param context
         * @return
         */
        public static boolean hasNotchInScreen(Context context) {
            boolean ret = false;
            try {
                ClassLoader cl = context.getClassLoader();
                Class HwNotchSizeUtil = cl.loadClass("com.huawei.android.util.HwNotchSizeUtil");
                Method get = HwNotchSizeUtil.getMethod("hasNotchInScreen");
                ret = (boolean) get.invoke(HwNotchSizeUtil);
            } catch (ClassNotFoundException e) {
                Log.e("test", "hasNotchInScreen ClassNotFoundException");
            } catch (NoSuchMethodException e) {
                Log.e("test", "hasNotchInScreen NoSuchMethodException");
            } catch (Exception e) {
                Log.e("test", "hasNotchInScreen Exception");
            }
            return ret;
        }
    
        /**
         * 获取刘海尺寸:width、height,int[0]值为刘海宽度 int[1]值为刘海高度。
         * @param context
         * @return
         */
        public static int[] getNotchSize(Context context) {
            int[] ret = new int[]{0, 0};
            try {
                ClassLoader cl = context.getClassLoader();
                Class HwNotchSizeUtil = cl.loadClass("com.huawei.android.util.HwNotchSizeUtil");
                Method get = HwNotchSizeUtil.getMethod("getNotchSize");
                ret = (int[]) get.invoke(HwNotchSizeUtil);
            } catch (ClassNotFoundException e) {
                Log.e("test", "getNotchSize ClassNotFoundException");
            } catch (NoSuchMethodException e) {
                Log.e("test", "getNotchSize NoSuchMethodException");
            } catch (Exception e) {
                Log.e("test", "getNotchSize Exception");
            }
            return ret;
        }
    
        /**
         * 设置使用刘海区域
         * @param window
         */
        public static void setFullScreenWindowLayoutInDisplayCutout(Window window) {
            if (window == null) {
                return;
            }
    
            try {
                WindowManager.LayoutParams layoutParams = window.getAttributes();
                Class layoutParamsExCls = Class.forName("com.huawei.android.view.LayoutParamsEx");
                Constructor con=layoutParamsExCls.getConstructor(WindowManager.LayoutParams.class);
                Object layoutParamsExObj=con.newInstance(layoutParams);
                Method method=layoutParamsExCls.getMethod("addHwFlags", int.class);
                method.invoke(layoutParamsExObj, FLAG_NOTCH_SUPPORT);
            } catch (Exception e) {
                Log.e("test", "other Exception");
            }
        }
    
        /*刘海屏全屏显示FLAG*/
        public static final int FLAG_NOTCH_SUPPORT = 0x00010000;
    
        /**
         * 设置应用窗口在华为刘海屏手机不使用刘海
         *
         * @param window 应用页面window对象
         */
        public static void setNotFullScreenWindowLayoutInDisplayCutout(Window window) {
            if (window == null) {
                return;
            }
            try {
                WindowManager.LayoutParams layoutParams = window.getAttributes();
                Class layoutParamsExCls = Class.forName("com.huawei.android.view.LayoutParamsEx");
                Constructor con = layoutParamsExCls.getConstructor(WindowManager.LayoutParams.class);
                Object layoutParamsExObj = con.newInstance(layoutParams);
                Method method = layoutParamsExCls.getMethod("clearHwFlags", int.class);
                method.invoke(layoutParamsExObj, FLAG_NOTCH_SUPPORT);
            } catch (Exception e) {
                Log.e("test", "hw clear notch screen flag api error");
            }
        }
    
        /*********
         * 1、声明全屏显示。
         *
         * 2、适配沉浸式状态栏,避免状态栏部分显示应用具体内容。
         *
         * 3、如果应用可横排显示,避免应用两侧的重要内容被遮挡。
         */
    
    
        /********************
         * 判断该 OPPO 手机是否为刘海屏手机
         * @param context
         * @return
         */
        public static boolean hasNotchInOppo(Context context) {
            return context.getPackageManager().hasSystemFeature("com.oppo.feature.screen.heteromorphism");
        }
    
        /**
         * 刘海高度和状态栏的高度是一致的
         * @param context
         * @return
         */
        public static int getStatusBarHeight(Context context) {
            int resId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
            if (resId > 0){
                return context.getResources().getDimensionPixelSize(resId);
            }
            return 0;
        }
    
    
        /**
         * Vivo判断是否有刘海, Vivo的刘海高度小于等于状态栏高度
         */
        public static final int VIVO_NOTCH = 0x00000020;//是否有刘海
        public static final int VIVO_FILLET = 0x00000008;//是否有圆角
    
        public static boolean hasNotchAtVivo(Context context) {
            boolean ret = false;
            try {
                ClassLoader classLoader = context.getClassLoader();
                Class FtFeature = classLoader.loadClass("android.util.FtFeature");
                Method method = FtFeature.getMethod("isFeatureSupport", int.class);
                ret = (boolean) method.invoke(FtFeature, VIVO_NOTCH);
            } catch (ClassNotFoundException e) {
                Log.e("Notch", "hasNotchAtVivo ClassNotFoundException");
            } catch (NoSuchMethodException e) {
                Log.e("Notch", "hasNotchAtVivo NoSuchMethodException");
            } catch (Exception e) {
                Log.e("Notch", "hasNotchAtVivo Exception");
            } finally {
                return ret;
            }
        }
    
    }
    

    相关文章

      网友评论

          本文标题:Android 屏幕适配-刘海屏适配

          本文链接:https://www.haomeiwen.com/subject/gukjphtx.html