先貼個(gè)原文地址:
看完本文不懂的請移步---> http://stackoverflow.com/questions/2591036/how-to-hide-the-title-bar-for-an-activity-in-xml-with-existing-custom-theme?answertab=votes#tab-top
1. Activity代碼中:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
說明:這句必須在setcontent()之前調(diào)用蚊锹,否則無效瞳筏!否則無效!否則無效牡昆!
2.在 style.xml ?中加入一個(gè) style姚炕,然后在 ?AndroidManifest ?中把 activity 的 style 設(shè)置成這
style.xml
AndroidManifest中引用(activity標(biāo)簽中)
android:theme="@style/myNoTitleBarStyle"
3.當(dāng)然也可以直接引用Android自帶的族壳,但不保證所有都有效喔
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
4.終結(jié)版:
res/values 和 res/values-11 和?res/values-14?中 styles.xml
最后的引用還是一樣这橙,其實(shí)上面那三,只需要加入中間那個(gè)noTitle就可以啦
android:theme="@style/Theme.NoTitle"
(來點(diǎn)題外的)
全屏也就是說移除通知欄
//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN)