在配置文件里修改
(关键代码:android:theme="@android:style/Theme.NoTitleBar.Fullscreen",如果想只是去除标题栏就后面不用加Fullscreen了,另外,如果想要整个应用都去除标题栏和状态栏,就把这句代码加到<application。。标签里面,如果只是想某个activity起作用,这句代码就加到相应的activity上):
隐藏标题栏需要使用预定义样式:android:theme=”@android:style/Theme.NoTitleBar”.
隐藏状态栏:android:theme=”@android:style/Theme.NoTitleBar.Fullscreen”.
在这里我还想说明一下,用前者在我们应用运行后,会看到短暂的状态栏,然后才全屏,而第二种方法是不会有这种情况的,所以我建议大家使用后者!
去掉屏幕上的title bar有3个方法:
1. Java代码实现
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.main); //... }
但使用这种方法,用户体验不太好,在Activity将要显示时,仍然会出现title bar,然后再去掉的。
2. 自定义style配置文件
在\res\values里面的style.xml添加:
<? xml version ="1.0" encoding ="utf-8" ?> < resources > < style name ="NoTitle" parent ="android:Theme" > < item name ="android:windowNoTitle" >true </ item > </ style > </ resources >
然后在AndroidManifest.xml文件里,给需要去掉title bar的activity的节点上加上android:theme="@style/NoTitle,代码如下:
< activity android:name =".MainActivity" android:configChanges ="orientation|keyboardHidden" android:theme ="@style/NoTitle" />
3. 直接在AndroidManifest.xml中进行修改
原来我们可以无需自定义style配置的,直接调用系统的就行了:
< activity android:name =".MainActivity" android:configChanges ="orientation|keyboardHidden" android:theme ="@android:style/Theme.NoTitleBar" />
如果我们要设置整个Application都去掉title bar,那么就设置application:
< application android:icon ="@drawable/lightbulb" android:label ="@string/app_name" android:theme ="@android:style/Theme.NoTitleBar" >
title bar还能够自定义的,请查看文章《自定义Activity标题栏(Title bar)》