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

Android全屏显示 无标题栏、全屏、设置为横屏application加:android:theme@android:style/Theme.NoTitleB

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

?