zoukankan      html  css  js  c++  java
  • Android手机刘海屏(附工具类)

    工具类

    根据VIVO、OPPO、华为官方文档,这里整理了一个刘海屏工具类,判断设备是否为刘海屏,其他厂商公布相关方法后也会在此更新。

    OPPO:

        /**
         * OPPO
         *
         * @param context Context
         * @return hasNotch
         */
        public static boolean hasNotchInOppo(Context context) {
            return context.getPackageManager().hasSystemFeature("com.oppo.feature.screen.heteromorphism");
        }
    

    VIVO:

        /**
         * VIVO
         * <p>
         * android.util.FtFeature
         * public static boolean isFeatureSupport(int mask);
         * <p>
         * 参数:
         * 0x00000020表示是否有凹槽;
         * 0x00000008表示是否有圆角。
         *
         * @param context Context
         * @return hasNotch
         */
        public static boolean hasNotchInVivo(Context context) {
            boolean hasNotch = false;
            try {
                ClassLoader cl = context.getClassLoader();
                Class FtFeature = cl.loadClass("android.util.FtFeature");
                Method get = FtFeature.getMethod("isFeatureSupport");
                hasNotch = (boolean) get.invoke(FtFeature, new Object[]{0x00000020});
            } catch (Exception e) {
                e.printStackTrace();
            }
            return hasNotch;
        }
    

    华为:

        /**
         * HUAWEI
         * com.huawei.android.util.HwNotchSizeUtil
         * public static boolean hasNotchInScreen()
         *
         * @param context Context
         * @return hasNotch
         */
        public static boolean hasNotchInHuawei(Context context) {
            boolean hasNotch = false;
            try {
                ClassLoader cl = context.getClassLoader();
                Class HwNotchSizeUtil = cl.loadClass("com.huawei.android.util.HwNotchSizeUtil");
                Method get = HwNotchSizeUtil.getMethod("hasNotchInScreen");
                hasNotch = (boolean) get.invoke(HwNotchSizeUtil);
            } catch (Exception e) {
                e.printStackTrace();
            }
            return hasNotch;
        }
    

    除了OPPO的判断简单点外,其他两家厂商都是用反射来获取刘海屏幕信息的。除了VIVO外,另外两家设备都测试过了,有相关设备的开发者可以自行测试一下,欢迎评论私信反馈。

    结语

    最后,不得不感叹苹果的号召力。跟风也好,抄袭也罢,最为开发者,吐槽之后,还是得做好应用适配。

    ---小米的方案:

    1.如何判断设备为 Notch 机型

    系统增加了 property ro.miui.notch,值为1时则是 Notch 屏手机。

    SystemProperties.getInt("ro.miui.notch", 0) == 1;   


     https://blog.csdn.net/djy1992/article/details/80688376

     https://blog.csdn.net/DJY1992/article/details/80689632

    转载:  https://juejin.im/entry/5acf72555188255c9323ad6d

  • 相关阅读:
    MySQL字符串相加函数如何运行?似曾相识还是记一笔吧
    JQuery使用getJSON跨域调用数据
    匹配中文字符的正则表达式
    php中删除超链接的正则表达式
    win2003系统+IIS6下,经常出现w3wp.exe和sqlserver.exe的内存占用居高不下
    如何添加修改uchome创始人
    JS中Null与Undefined的区别
    错误分析及解决办法MySQL server has gone away
    更改表自动递增值的sql
    mysql如何修改导入数据库文件大小限制
  • 原文地址:https://www.cnblogs.com/porter/p/9283891.html
Copyright © 2011-2022 走看看