Android開發之全屏顯示的兩種方法

2021-09-07 05:05:11 字數 976 閱讀 1083

1.通過修改清單檔案中theme,實現全屏

1

<

2android:name

3android:allowbackup

="true"

4android:icon

="@drawable/ic_launcher"

5android:label

6android:theme

>

7>

開發android中,在清單檔案中都指定了theme,但是這些theme的「windownotitle」都設定為false,要想實現全屏顯示,可以自定義乙個主題,繼承系統指定的theme,然後修改該屬性值為true就可以實現全屏了。

**如下:

1

2<

style

name

parent

>

3<

item

name

="android:windownotitle"

>true

item

>

4style

>

2.需要在每個activity中指定**,實現該activity的全屏

在方法setcontentview()方法前,新增一行**:

requestwindowfeature(window.feature_no_title);

setcontentview(r.layout.***);

getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen);

這樣就可以實現該activity的全屏了。

第二個方法請參考

android實現全屏顯示

兩種方法 一 在清單檔案中 需要全屏的activity標籤下新增 android theme android style theme.notitlebar.fullscreen 二 在 中 在初始化activity時oncreate方法中,載入布局 setcontentview 之前 去掉標題欄顯示...

Android實現全屏顯示的方法

我們都知道在android中某些功能的實現往往有兩種方法 一種是在xml檔案中設定相應屬性,另一種是用 實現。同樣android實現全屏顯示也可以通過這兩種方法實現 1 在androidmanifest.xml的配置檔案裡面的標籤新增屬性 android theme android style th...

Android實現全屏顯示的方法

1 在androidmanifest.xml的配置檔案裡面的標籤新增屬性 android theme android style theme.notitlebar.fullscreen 2 在activity的oncreate 方法中的super 和setcontentview 兩個方法之間加入下面...