Android P+ 异形屏全屏
跳到导航
跳到搜索
2020-07-14 14:25
Java
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 延伸显示区域到刘海 if (Build.VERSION.SDK_INT >= 28) { WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES; getWindow().setAttributes(lp); // 设置页面全屏显示 final View decorView = getWindow().getDecorView(); decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE); } setContentView(R.layout...); }
XML
<style name="AppTheme" parent="..."> <item name="android:windowLayoutInDisplayCutoutMode" tools:targetApi="o_mr1">shortEdges</item> </style>