Android 适配安卓9.0,适配全面屏,Dialog或DialogFragment适配全面屏
Activity适配全面屏: 重写Activt/*** 生命周期 onCreate->onStart->onResume->onAttachedToWindow* 判断是否是异形屏,必须在此方法*/@Overridepublic void onAttachedToWindow() {super.onAttachedToWindow();//适配安卓Q全面屏NotchUtil.
检测是否异形屏,刘海屏,水滴屏的代码在最后.
安卓8.0各个手机厂商配置参数:
<!-- 全面屏 vivo/oppo o版本刘海屏配置项 -->
<meta-data
android:name="android.max_aspect"
android:value="2.6" />
<!-- 刘海屏华为o版本配置,如果不配置则不使用华为o系统刘海区域 -->
<meta-data
android:name="android.notch_support"
android:value="true" />
<!-- 刘海屏小米o版本配置,如果不配置则不使用小米o系统刘海区域 -->
<meta-data
android:name="notch.config"
android:value="portrait|landscape" />
Activity适配全面屏:
在Activity中重写 onAttachedToWindow() 方法,在OnCreate方法中不生效.
/**
* 生命周期 onCreate->onStart->onResume->onAttachedToWindow
* 判断是否是异形屏,必须在此方法
*/
@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
//适配安卓Q全面屏
setActivityAndroidP(this);
}
/**
* 安卓P(9.0系统) 适配Activity页面的全屏
*/
public static void setActivityAndroidP(Activity activity) {
//设置全屏展示
if (Build.VERSION.SDK_INT >= 28) {
if (activity != null && activity.getWindow() != null) {
activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);//全屏显示
WindowManager.LayoutParams lp = activity.getWindow().getAttributes();
lp.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
activity.getWindow().setAttributes(lp);
} else {
PlatformLog.e("activity全屏设置失败,activity或window为空");
}
}
}
Dialog或DialogFragment适配全面屏:
重写 onActivityCreated(Bundle savedInstanceState) 方法,在里面调用:
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
//适配安卓Q全面屏
setDialogAndroidP(getDialog());
}
/**
* 安卓P(9.0系统) 适配dialogFragment页面的全屏
*/
public static void setDialogAndroidP(Dialog dialog) {
//设置全屏展示
if (Build.VERSION.SDK_INT >= 28) {
if (dialog != null && dialog.getWindow() != null) {
dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);//全屏显示
WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
lp.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
dialog.getWindow().setAttributes(lp);
} else {
PlatformLog.e("dialog全屏设置失败,dialog或window为空");
}
}
}
全屏设置完之后在小米11手机上,出现了一个虚拟按键区,此区域默认黑色,跟整体屏幕很不协调,还有时不能全屏展示,解决方案如下:
Activity在 setContentView() 设置方法之前设置:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//沉浸式
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
//设置虚拟按键的背景颜色
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setNavigationBarColor(Color.parseColor("#FFFF00"));
}
setContentView(R.layout.activity_main);
}
此代码设置在Dialog或DialogFragment中却发现虚拟按键背景颜色不生效,而且当Activity设置 如下主题也不能修改虚拟背景颜色:
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
于是决定自定义主题尝试,最终成功实现效果:
1.单独设置Dialog或DialogFragment虚拟背景颜色:
在values/styles.xml中自定义:
<!--设置虚拟按键navigationBarColor属性,安卓5.0之后生效,DialogFragment在代码中设置无效-->
<style name="dialog_fragment_navigationBarColor_style">
<item name="android:windowFullscreen">true</item>
</style>
创建values-v21/styles.xml,因为虚拟按键是安卓5.0推出的,直接在values/styles.xml中定义报错:
<!--设置虚拟按键navigationBarColor属性,安卓5.0之后生效,DialogFragment在代码中设置无效-->
<style name="dialog_fragment_navigationBarColor_style">
<!-- 下面配置来自参数二setStyle(DialogFragment.STYLE_NO_TITLE, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);-->
<item name="android:windowFullscreen">true</item>
<item name="android:navigationBarColor">#FFFFFF</item><!--虚拟按键背景,DialogFragment在代码中设置无效-->
</style>
配置图片如下:
在Dialog或DialogFragment的onCreate() 方法中调用:
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(DialogFragment.STYLE_NO_TITLE, R.style.dialog_fragment_navigationBarColor_style);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
if (getDialog() != null && getDialog().getWindow() != null) {
getDialog().getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);//沉浸式
}
}
2. 整个APP实现虚拟按键颜色:
1.在values/styles.xml中自定义:
<!--适配全面屏和底部虚拟键背景的自定义style,直接使用@android:style/Theme.Light.NoTitleBar.Fullscreen会
导致底部虚拟键背景设置颜色失败-->
<style name="no_title_style">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
2.创建values-v21/styles.xml,因为虚拟按键是安卓5.0推出的,直接在values/styles.xml中定义报错:
<!--适配全面屏和底部虚拟键背景的自定义style,直接使用@android:style/Theme.Light.NoTitleBar.Fullscreen会
导致底部虚拟键背景设置颜色失败-->
<style name="no_title_style">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:navigationBarColor">#FFFF00<!--虚拟按键背景,DialogFragment在代码中设置无效-->
</style>
3.在Activiyt统一使用上面定义的style:
<activity
android:name=".MainActivity"
android:theme="@style/no_title_style">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
最终实现所有的Activity,Fragment,Dialog,DialogFragment 全屏显示,虚拟导航背景颜色也修改成功.
异形屏检测,见本人另外一篇博客,直接复制工具类使用即可:
https://blog.csdn.net/zhao8856234/article/details/117747273?spm=1001.2014.3001.5501
更多推荐
所有评论(0)