在android中可以有兩種設定全屏無標題的方法:
1.在activity中的oncreate中新增:
//以下兩種方法都需要放在在setcontentview之前
//設定無標題
requestwindowfeature(window.feature_no_title);
//隱藏狀態列,全屏顯示
//第一種:
getwindow().addflags(windowmanager.layoutparams.flag_fullscreen);
//第二種:(兩種方法效果一樣)
//getwindow().setflags(windowmanager.layoutparams.flag_fullscreen,
2.在清單檔案中配置:
android:label="@string/title_activity_start"
android:theme="@android:style/theme.notitlebar.fullscreen"
>
android之兩種設定全屏或者無標題的方法
在開發中我們經常需要把我們的應用設定為全屏或者不想要title,這裡是有兩種方法的,一種是在 中設定,另一種方法是在配置檔案裡改 一 在 中設定 package jason.tutor import android.os.bundle import android.view.window impor...
android之兩種設定全屏或者無標題的方法
在開發中我們經常需要把我們的應用設定為全屏或者不想要title,這裡是有兩種方法的,一種是在 中設定,另一種方法是在配置檔案裡改 一 在 中設定 package jason.tutor import android.os.bundle import android.view.window impor...
設定Activity無標題
1.設定activity無標題 方法一 在manifest.xml中為activity增加屬性 android theme android style theme.notitlebar 方法二 在activity的oncreate 中加入 requestwindowfeature window.fe...