android隱藏標題欄
『壹』 android開發如何去掉標題欄
有三種方法
第一種:在代碼里實現:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄
記住:這句代碼要寫在setContentView()前面。
第二種:在清單文件中實現:
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
這樣用可以將整個應用設置成無標題欄,如果只需要在一個Activity設置成一個無標題欄的形式,只要把上面的第三行代碼寫到某一個Activity裡面就可以了。
第三種:在style.xml文件里定義
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="notitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
然後面manifest.xml中引用就可以了
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/notitle">
一般使用的第一種和第二種,第三種稍微麻煩一點。
『貳』 android隱藏標題欄,程序會崩潰
如果只是想隱藏標題欄的話:
方法1、
在manifest裡面的activity加
android:theme="@android:style/theme.notitlebar"
方法2、
在activity的oncreate方法寫入以下代碼:this.requestwindowfeature(window.feature_no_title);//去掉標題欄
『叄』 android開發中怎麼去掉標題欄
去除標題欄title其實非常簡單,他有兩種方法,一種是在代碼中添加,另一種是在AndroidManifest.xml中添加:
1、在代碼中實現:
在此方法setContentView(R.layout.main)之前加入:
requestWindowFeature(Window.FEATURE_NO_TITLE);標題欄就沒有了。
2、在AndroidManifest.xml中實現:
注冊Activity時加上如下的一句配置就可以實現。
<activity android:name=".Activity"
android:theme="@android:style/Theme.NoTitleBar"
></activity>
『肆』 android app 界面上的手機自帶的標題欄怎麼去掉
在android中去掉標題欄有三種方法,它們也有各自的特點。
1.在代碼里實現
[java] view plain
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄
記住:這句代碼要寫在setContentView()前面。
2.在清單文件(manifest.xml)裡面實現
[java] view plain
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
這樣用可以將整個應用設置成無標題欄,如果只需要在一個Activity設置成一個無標題欄的形式,只要把上面的第三行代碼寫到某一個Activity裡面就可以了。
3.在style.xml文件里定義
[html] view plain
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="notitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
然後面manifest.xml中引用就可以了,這種方法稍麻煩了些。
[html] view plain
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/notitle">
其實可以看得出來,第二種方法和第三種方法實質是一樣的,只不過第二種方法調用的是系統定義好的style.xml文件,而第三種方法則是在自己的應用里定義style.xml,然後再自己再調用,其實道理是一樣的,第三種方法做起來更有成就感。
『伍』 android 隱藏標題欄代碼 無效
把你 的activity 的代碼貼出來
『陸』 如何設置隱藏Android應用的標題欄和狀態欄
代碼及說明參考下面代碼:
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
final Window win = getWindow();
// No Statusbar 不顯示狀態欄
win.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
// No Titlebar 不顯示標簽欄
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.mylayout);
}
『柒』 android中如何隱藏應用程序標題欄和通知欄
如果想同時隱藏標題欄和通知欄的話:方法1、 在manifest裡面的activity加
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 方法2、 在activity的onCreate方法寫入以下代碼:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息欄 如果只是想隱藏標題欄的話:方法1、 在manifest裡面的activity加
android:theme="@android:style/Theme.NoTitleBar" 方法2、 在activity的onCreate方法寫入以下代碼:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄
『捌』 android studio如何去掉標題欄
在AS的歡迎界面可以刪除工程。 如果已經打開工程了,首先關閉工程:File→Close Project 到AS歡迎頁面後,將滑鼠移動到左側希望刪除的項目名上後,按下Delete按鍵,注意不要點擊!
『玖』 Android studio怎樣隱藏標題欄
如果想同時隱藏標題欄和通知欄的話:方法1、 在manifest裡面的activity加 android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 方法2、 在activity的onCreate方法寫入以下代碼:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄 this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息欄 如果只是想隱藏標題欄的話:方法1、 在manifest裡面的activity加 android:theme="@android:style/Theme.NoTitleBar" 方法2、 在activity的onCreate方法寫入以下代碼:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄