Android全屏显示 无标题栏、全屏、设置为横屏

<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);

猜你喜欢

转载自yebingzi.iteye.com/blog/1667904