全面屏幕适配
1.在AndroidManifest.xml 文件中 当前启动Activtiy中加上一条属性:android:resizeableActivity = “true” 或者
这个属性是android 7.0之后,用来开启分屏模式的开关,自动去适配了全面屏
2.加上 在Application 中加上
<meta-data android:name="android:max_aspect" android:value="2.1"/>
刘海屏幕适配
只需要在Application 中加上 <meta-data android:name="android.notch_support" android:value="true"/>