美文网首页
2018-05-14

2018-05-14

作者: yangchendev | 来源:发表于2018-05-14 17:53 被阅读0次

目前支持判断华为、oppo、vivo的刘海屏手机

public class DisplayCutoutUtils {

    private Context mContext;

    public DisplayCutoutUtils(Context mContext) {
        this.mContext = mContext;
    }

    /**
     * @return 返回是否有刘海屏
     */
    public boolean hasNotchInScreen() {
        if (PhoneDetector.isEmui()) {
            boolean ret = false;
            try {
                ClassLoader cl = mContext.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");
            } finally {
                return ret;
            }
        } else if (PhoneDetector.isOppo()) {
            return mContext.getPackageManager()
                    .hasSystemFeature("com.oppo.feature.screen.heteromorphism");
        } else if (PhoneDetector.isVivo()) {
            boolean ret = false;
            try {
                ClassLoader cl = mContext.getClassLoader();
                Class FtFeature = cl.loadClass("com.util.FtFeature");
                Method get = FtFeature.getMethod("isFeatureSupport", int.class);
                ret = (boolean) get.invoke(FtFeature, 0x00000020);

            } catch (ClassNotFoundException e) {
                Log.e("test", "hasNotchInScreen ClassNotFoundException");
            } catch (NoSuchMethodException e) {
                Log.e("test", "hasNotchInScreen NoSuchMethodException");
            } catch (Exception e) {
                Log.e("test", "hasNotchInScreen Exception");
            } finally {
                return ret;
            }
        }
        return false;
    }


}

相关文章

网友评论

      本文标题:2018-05-14

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