Android華為凹口屏適配小結
Android8.0 以後【凹口屏】得到迅速發展,目前已有了挖孔屏/水滴屏/劉海屏等各式各樣的螢幕,究其根本依舊是【凹口屏】,單華為一個品牌就涵蓋了基本所有型別,而對於螢幕適配也是不可逃避的問題。小選單獨對華為各型號螢幕進行適配嘗試,部分方法可通用到其他品牌裝置,為 Android 標準 SDK 方法。
其實凹口屏已經出現很久了,對於獲取凹口寬高的方式也有很多種,但是以前主流的凹口屏中凹口位置一般是位於螢幕正上方,但隨著發展,也出現了在左上角的挖孔屏樣式。相應的,Android 9.0 即 SDK28 也釋出了獲取凹口屏的方法。
Android 9.0 以下適配方案
對華為裝置凹口屏適配情況來說,若僅需獲取凹口位置的寬高,如下方法即可,在 Android 各版本中均可(Android 9.0 及以上亦可)。此時獲取螢幕水平方向安全位置時,可根據螢幕寬度-凹口寬度再左右均分即可。
/**
* 華為凹口屏判斷方法 Android 各版本均可
* @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(TAG, "hasNotchInScreen ClassNotFoundException");
} catch (NoSuchMethodException e) {
Log.e(TAG, "hasNotchInScreen NoSuchMethodException");
} catch (Exception e) {
Log.e(TAG, "hasNotchInScreen Exception");
} finally {
return ret;
}
}
/**
* 華為凹口屏寬高獲取方式 int[]{width, height}
* @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(TAG, "getNotchSize ClassNotFoundException");
} catch (NoSuchMethodException e) {
Log.e(TAG, "getNotchSize NoSuchMethodException");
} catch (Exception e) {
Log.e(TAG, "getNotchSize Exception");
} finally {
notchWidth = ret[0];
notchHeight = ret[1];
return ret;
}
}
Android 9.0 及以上適配
對於華為新出的挖孔屏裝置基本均為 Android 9.0 及以上,Android 9.0 提供了對凹口屏相關的 SDK,谷歌認為凹口位置可以不固定位置也不固定個數,但是對於裝置一條邊只能有一個;如下方法對於 Android 9.0 及以上裝置判斷均可。SDK 不僅可以判斷是否為凹口屏,同時可以獲取各個凹口大小及所在位置。
步驟如下:
- 升級 build.gradle 中 compileSdkVersion 或 targetSdkVersion 為 28;
- 在 Application 或 Activity 中設定 meta-data 屬性,小菜測試不設定亦可;
<meta-data android:name="android.notch_support" android:value="true"/>
- 根據如下方法獲取相應引數;
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
getSupportActionBar().hide();
getWindow().getDecorView()
.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
//設定頁面全屏顯示
WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
//設定頁面延伸到凹口區顯示
getWindow().setAttributes(lp);
getWindow().getDecorView()
.findViewById(android.R.id.content)
.getRootView()
.setOnApplyWindowInsetsListener(new View.OnApplyWindowInsetsListener() {
@Override
public WindowInsets onApplyWindowInsets(View view, WindowInsets windowInsets) {
DisplayCutout cutout = windowInsets.getDisplayCutout();
if (cutout == null) {
Log.e(TAG, "cutout==null, is not notch screen");//通過cutout是否為null判斷是否凹口手機
isNotchScreen = false;
} else {
List<Rect> rects = cutout.getBoundingRects();
if (rects == null || rects.size() == 0) {
Log.e(TAG, "rects==null || rects.size()==0, is not notch screen");
isNotchScreen = true;
} else {
Log.e(TAG, "rect size:" + rects.size());//注意:凹口的數量可以是多個
isNotchScreen = true;
for (Rect rect : rects) {
notchRight = rect.right;
notchLeft = rect.left;
notchTop = rect.top;
notchBottom = rect.bottom;
notchWidth = notchRight - notchLeft;
notchHeight = notchBottom - notchLeft;
safeLeft = cutout.getSafeInsetLeft();
safeRight = cutout.getSafeInsetRight();
safeTop = cutout.getSafeInsetTop();
safeBottom = cutout.getSafeInsetBottom();
}
}
}
return windowInsets;
}
});
}
注意事項:
- 小菜在設定 Application 或 Activity 的主題為 NoActionBar 樣式,此時要去掉 getSupportActionBar().hide(); 否則會報空指標異常;
<style name="NoBarTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
- 如下設定全屏使用凹口屏時要注意 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN,否則引數很有可能獲取不到;
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
getWindow().setAttributes(lp);
- 設定主題 NoActionBar 或程式碼中動態設定 getSupportActionBar().hide(); 展示效果在 Android 9.0 以下有部分差異,如下:
對於凹口屏適配還有很多機型要單獨處理,以上僅對華為裝置進行參考;如果有不對的地方還希望多多指出。
相關文章
- Android 劉海屏適配總結Android
- Android劉海屏適配全方案(華為、小米、Vivo、Oppo)Android
- android全面屏適配Android
- Android 劉海屏適配Android
- Android技能樹 — 螢幕適配小結Android
- Android P 凹口屏支援,打造全面屏體驗Android
- Android O, P 劉海屏及全面屏適配Android
- Android錄製視訊的全面屏適配Android
- Android APP全面屏適配技術要點AndroidAPP
- Android全面屏虛擬導航欄適配Android
- Android P 劉海屏適配全攻略Android
- 京東小程式摺疊屏適配探索
- Android適配Android
- Android 螢幕適配終結者Android
- 小程式canvas適配android7,8CanvasAndroid
- pc大屏適配
- Android開發之平板和橫豎屏適配-RecyclerViewAndroidView
- Android適配: 拉伸適配的缺點Android
- Android螢幕適配總結和思考Android
- 華為手環耳機模式適配模式
- h5頁面適配小結H5
- Android全面屏啟動頁適配的一些坑Android
- Android 國際化之多語言適配小記Android
- Android圖示適配Android
- android 螢幕適配Android
- Android P 適配指南Android
- vue3大屏適配Vue
- 微信小程式適配 iPhone X 總結微信小程式iPhone
- 關於 Android 狀態列的適配總結Android
- Android app自動更新總結(已適配9.0)AndroidAPP
- 雲記適配華為墨水屏平板,帶來更好的手寫和閱讀體驗
- Android螢幕適配(理論適配100%機型)Android
- Android7.0行為變更:適配File ProviderAndroidIDE
- Android中的icon適配Android
- Android6.0~9.0適配Android
- Android Q 提前適配攻略Android
- Android適配:DP簡述Android
- Flutter SafeArea - 異形屏適配利器Flutter