web-dev-qa-db-ja.com

Android 28未満のAPIでnotch(display cutout)を処理する方法は?

AndroidはAPI 28にノッチサポートを追加しましたが、API 27(Honor 10、Huawei P20など)を実行しているデバイスでそれを処理する方法は?

DisplayCutoutCompatを使用しようとしましたが、ドキュメントでは実際にインスタンスを作成する方法が示されていないため、インスタンスを作成できませんでした。

コンストラクターパラメーター値の作成方法:Rect safeInsetsList<Rect> boundingRects

また、コンストラクターのソースコードも調べましたが、少し混乱しています。

public DisplayCutoutCompat(Rect safeInsets, List<Rect> boundingRects) {
        this(SDK_INT >= 28 ? new DisplayCutout(safeInsets, boundingRects) : null);
    }

API <28を実行しているデバイスでは、常にnullが返されます。前もって感謝します。

11
blade

GoogleはAndroid Pでノッチ関連のAPIを提供しました。Pおよびノッチよりも低いバージョンのAPIを備えたデバイスは独自のノッチAPIを実装しました。デバイス指定のドキュメントからAPIを参照できます。

また、公式ドキュメントにはDisplayCutoutCompatインスタンスの作成はありませんでしたが、次のようにDisplayCutoutを作成できます。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
            DisplayCutout displayCutout = getWindow().getDecorView().getRootWindowInsets().getDisplayCutout();
}
13
fujino ryougi

同様の問題があり、必要なものにアクセスするにはリフレクションを使用する必要がありました。私の問題は、画面サイズに応じていくつかの計算があり、ノッチスペースにアクセスしていない間、計算が間違っていて、コードがうまく機能しなかったことでした。

    public static final String CLASS_DISPLAY_CUTOUT = "Android.view.DisplayCutout";
    public static final String METHOD_GET_DISPLAY_CUTOUT = "getDisplayCutout";
    public static final String FIELD_GET_SAFE_INSET_TOP = "getSafeInsetTop";
    public static final String FIELD_GET_SAFE_INSET_LEFT = "getSafeInsetLeft";
    public static final String FIELD_GET_SAFE_INSET_RIGHT = "getSafeInsetRight";
    public static final String FIELD_GET_SAFE_INSET_BOTTOM = "getSafeInsetBottom";


    try {
            WindowInsets windowInsets = activity.getWindow().getDecorView().getRootWindowInsets();
            if (windowInsets == null) {
                return;
            }
            Method method = WindowInsets.class.getMethod(METHOD_GET_DISPLAY_CUTOUT);
            Object displayCutout = method.invoke(windowInsets);
            if (displayCutout == null) {
                return;
            }
            Class clz = Class.forName(CLASS_DISPLAY_CUTOUT);
            int top = (int) clz.getMethod(FIELD_GET_SAFE_INSET_TOP).invoke(displayCutout);
            int left = (int) clz.getMethod(FIELD_GET_SAFE_INSET_LEFT).invoke(displayCutout);
            int right = (int) clz.getMethod(FIELD_GET_SAFE_INSET_RIGHT).invoke(displayCutout);
            int bottom = (int) clz.getMethod(FIELD_GET_SAFE_INSET_BOTTOM).invoke(displayCutout);
            Rect rect = new Rect(left, top, right, bottom);

        } catch (Exception e) {
            Log.e(TAG, "Error when getting display cutout size");
        }
1
M.Baraka

だから、notch(display cutout)をAndroid 28未満のAPI)で処理したい。製造元によって実装が異なるため、これは恐ろしいことです。それでも、すべては Javaリフレクションを使用します ノッチ情報を取得するには 工場設計パターン をここで使用する必要があります。

interface ICutout {
    public boolean hasCutout();

    public Rect[] getCutout();
}
  1. Huawei ディスプレイカットアウト

    プライベート静的クラスHuaweiCutoutはICutoutを実装します{

    private Context context;
    public HuaweiCutout(@NonNull Context context) {
        this.context = context;
    }
    
    @Override
    public boolean hasCutout() {
        try {
            ClassLoader classLoader = context.getClassLoader();
            Class class_HwNotchSizeUtil = classLoader.loadClass("com.huawei.Android.util.HwNotchSizeUtil");
            Method method_hasNotchInScreen = class_HwNotchSizeUtil.getMethod("hasNotchInScreen");
            return (boolean) method_hasNotchInScreen.invoke(class_HwNotchSizeUtil);
        } catch (Exception e) {
        }
        return false;
    }
    
    @Override
    public Rect[] getCutout() {
        try {
            ClassLoader classLoader = context.getClassLoader();
            Class class_HwNotchSizeUtil = classLoader.loadClass("com.huawei.Android.util.HwNotchSizeUtil");
            Method method_getNotchSize = class_HwNotchSizeUtil.getMethod("getNotchSize");
    
            int[] size = (int[]) method_getNotchSize.invoke(class_HwNotchSizeUtil);
            int notchWidth = size[0];
            int notchHeight = size[1];
            int screenWidth = DeviceUtil.getScreenWidth(context);
    
            int x = (screenWidth - notchWidth) >> 1;
            int y = 0;
            Rect rect = new Rect(x, y, x + notchWidth, y + notchHeight);
            return new Rect[] {rect};
        } catch (Exception e) {
        }
        return new Rect[0];
    }
    

    }

  2. Oppo カットアウトの表示

    private static class OppoCutout implements ICutout {
    
    private Context context;
    public OppoCutout(@NonNull Context context) {
        this.context = context;
    }
    
    @Override
    public boolean hasCutout() {
        String CutoutFeature = "com.oppo.feature.screen.heteromorphism";
        return context.getPackageManager().hasSystemFeature(CutoutFeature);
    }
    
    @Override
    public Rect[] getCutout() {
        String value = getProperty("ro.oppo.screen.heteromorphism");
        String[] texts = value.split("[,:]");
        int[] values = new int[texts.length];
    
        try {
            for(int i = 0; i < texts.length; ++i)
                values[i] = Integer.parseInt(texts[i]);
        } catch(NumberFormatException e) {
            values = null;
        }
    
        if(values != null && values.length == 4) {
            Rect rect   = new Rect();
            rect.left   = values[0];
            rect.top    = values[1];
            rect.right  = values[2];
            rect.bottom = values[3];
    
            return new Rect[] {rect};
        }
    
        return new Rect[0];
    }
    

    }

  3. Vivo カットアウトの表示

    private static class VivoCutout implements ICutout {
    
    private Context context;
    public VivoCutout(@NonNull Context context) {
        this.context = context;
    }
    
    @Override
    public boolean hasCutout() {
        try {
            ClassLoader clazz = context.getClassLoader();
            Class ftFeature = clazz.loadClass("Android.util.FtFeature");
            Method[] methods = ftFeature.getDeclaredMethods();
            for(Method method: methods) {
                if (method.getName().equalsIgnoreCase("isFeatureSupport")) {
                    int NOTCH_IN_SCREEN = 0x00000020;  // 表示是否有凹槽
                    int ROUNDED_IN_SCREEN = 0x00000008;  // 表示是否有圆角
                    return (boolean) method.invoke(ftFeature, NOTCH_IN_SCREEN);
                }
            }
        } catch (Exception e) {
        }
        return false;
    }
    
    @Override
    public Rect[] getCutout() {
        // throw new RuntimeException();  // not implemented yet.
        return new Rect[0];
    }
    

    }

  4. Xiaomiディスプレイカットアウト of Android Oreoof Androidパイ

    private static class XiaomiCutout implements ICutout {
    
    private Context context;
    public XiaomiCutout(@NonNull Context context) {
        this.context = context;
    }
    
    @Override
    public boolean hasCutout() {
        // `getprop ro.miui.notch` output 1 if it's a notch screen.
        String text = getProperty("ro.miui.notch");
        return text.equals("1");
    }
    
    @Override
    public Rect[] getCutout() {
        Resources res = context.getResources();
        int widthResId = res.getIdentifier("notch_width", "dimen", "Android");
        int heightResId = res.getIdentifier("notch_height", "dimen", "Android");
        if(widthResId > 0 && heightResId > 0) {
            int notchWidth = res.getDimensionPixelSize(widthResId);
            int notchHeight = res.getDimensionPixelSize(heightResId);
    
            // one notch in screen top
            int screenWidth = DeviceUtil.getScreenSize(context).getWidth();
            int left = (screenWidth - notchWidth) >> 1;
            int right = left + notchWidth;
            int top = 0;
            int bottom = notchHeight;
            Rect rect = new Rect(left, top, right, bottom);
            return new Rect[] {rect};
        }
    
        return new Rect[0];
    }
    

    }

一部のメーカーがgetNotchHeight()メソッドを用意していない場合は、ステータスバーの高さを使用できます。 Androidは、ノッチの高さが最大でステータスバーの高さであることを保証しています。

public static int getStatusBarHeight(Context context) {
    int statusBarHeight = 0;
    Resources res = context.getResources();
    int resourceId = res.getIdentifier("status_bar_height", "dimen", "Android");
    if (resourceId > 0) {
        statusBarHeight = res.getDimensionPixelSize(resourceId);
    }
    return statusBarHeight;
}

Android Pie and above(Build.VERSION.SDK_INT >= Build.VERSION_CODES.P)、システムのAPIを使用してノッチ情報を取得できます。ウィンドウはattachActivity#onAttachedToWindowまたはnullのDisplayCutoutを取得します。

DisplayCutout displayCutout = activity.getWindow().getDecorView().getRootWindowInsets().getDisplayCutout();
0
KAlO2