1、第一種方法最為常見:
--效果不是很好!--
requestwindowfeature(window.feature_no_title);
//去掉標題欄
2、在清單中設定
效果不錯--不會出現標題欄閃一下的情況
<="
@drawable/icon
"android:label="
"android:theme
="@android:style/theme.notitlebar"
>......
3、 這種在一般的應用中不常用,就是在res/values目錄下面新建乙個style.xml的檔案
該方法與方法二有點相識!
效果不錯--不會出現標題欄閃一下的情況
<?
xml version="1.0" encoding="utf-8"
?>
<
resources
>
<
style
name
="notitle"
>
<
item
name
="android:windownotitle"
>
true
item
>
style
>
resources
>
這樣,我們就自定義了乙個style,就相當於乙個主題,然後在androidmanifest.xml檔案中定義
<
android:icon
="@drawable/icon"
android:label
android:theme
="@style/notitle"
>
1、在**中書寫
getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen);
2、在清單中設定
android:theme="@android:style/theme.notitlebar.fullscreen"
3、與方法二類似
--此方法有瑕疵!--標題欄依然存在
android:icon="@drawable/icon"
android:label
android:theme="@style/fullscreen"
Android 實現全屏 去掉標題欄
在進行android ui設計時,我們經常需要將螢幕設定成無標題欄或者全屏。要實現起來也非常簡單,主要有兩種方法 配置xml檔案和編寫 設定。1.在xml檔案中進行配置 在專案的清單檔案androidmanifest.xml中,找到需要全屏或設定成無標題欄的activity,在該activity進行...
Android去掉標題欄以及全屏顯示
在 中設定去掉標題欄 設定隱藏標題欄,必須在setcontentview 之前 mainactivity.this requestwindowfeature window.feature no title 在清單檔案中設定去掉標題欄 在邏輯 中設定全屏 設定全屏展示,必須在setcontentvie...
QT 去掉標題欄和去掉標題欄後移動視窗
在用qt編寫介面時,去掉標題欄方法比較簡單,就一行 this setwindowflags qt framelesswindowhint 去掉以後又發現乙個問題,就是不能移動視窗了,於是我就重寫了三個滑鼠事件,大致 如下 h檔案的 include protected void mousepresse...