Android中界面实现全屏显示的两种方式

Android中界面实现全屏显示的两种方式 

1. 在Java代码中设置

[java] view plain copy print ?
  1. super.onCreate(savedInstanceState);
  2. requestWindowFeature(Window.FEATURE_NO_TITLE); //无title
  3. getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
  4. WindowManager.LayoutParams.FLAG_FULLSCREEN); //全屏
  5. setContentView(R.layout.main);

在这里需要注意的是这两段Java代码必须放在setContentView( ); 之前,不然会报错,错误显示如下。

[plain] view plain copy
  1. 01-14 05:25:41.429: E/AndroidRuntime(7405): Caused by: android.util.AndroidRuntimeException: requestFeature() must be called before adding content

2. 在Manifest文件中修改

在默认启动的Activity里添加 android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 即可

[html] view plain copy
  1. <activity android:name=".MainActivity"
  2. android:label="@string/app_name"
  3. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  4. >
  5. <intent-filter>
  6. <action android:name="android.intent.action.MAIN" />
  7. <category android:name="android.intent.category.LAUNCHER" />
  8. </intent-filter>
  9. </activity>

你可能感兴趣的:(android)