在开发中我们经常需要把我们的应用设置为全屏,这里我所知道的有俩中方法,一中是在代码中设置,另一种方法是在配置文件里改!
下面我简单的介绍一下各种设置的方法
一、在代码中设置:
java代码:
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- //设置无title
- requestWindowFeature(Window.FEATURE_NO_TITLE);
- //设置全屏
- getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,
- WindowManager.LayoutParams. FLAG_FULLSCREEN);
- setContentView(R.layout.main);
- }
在这里要强调一点,设置全屏的俩段代码必须在setContentView(R.layout.main) 之前,不然会报错。
二、在配置文件里修改(android:theme="@android:style/Theme.NoTitleBar.Fullscreen"):
java代码:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name="."
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>