想实现横屏全屏显示,网上代码一般是这样的:
AndroidManifest.xml文件中这样设置:
android:name=".MainActivity" android:exported="true" android:hardwareAccelerated="true" android:screenOrientation="landscape" android:launchMode="singleInstance" android:configChanges="screenSize|keyboard|keyboardHidden|navigation" android:theme="@style/AppTheme.NoTitle_FullScreen">
MainAvcivity.java文件中这样写:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LOW_PROFILE
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY