欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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