Android全屏显示 无标题栏、全屏、设置为横屏
程序员文章站
2022-05-16 13:26:08
...
<application 加: android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> <activity 加: android:screenOrientation="portrait"
代码中:
/* 设置为无标题栏 */ requestWindowFeature(Window.FEATURE_NO_TITLE); /* 设置为全屏模式 */ getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); /* 设置为横屏 */ setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); setContentView(R.layout.main);