android中activity全屏的方法

無謂生活發表於2014-05-29

在Android中某些功能的實現往往有兩種方法,一種是在xml檔案中設定相應屬性,另一種是用程式碼實現。

同樣Android實現全屏顯示也可以通過這兩種方法實現:

1、在AndroidManifest.xml的配置檔案裡面的<activity>標籤新增屬性:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

2、在Activity的onCreate()方法中的super.onCreate(savedInstanceState)和setContentView()兩個方法之間加入下面兩條語句:

this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉資訊欄

相關文章