android应用去掉title bar


一、所有Activty界面全去掉:

修改AndroidManifest.xml
在application 标签中添加 android:theme="@android:style/Theme.NoTitleBar"

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
这个Bitmap中也不会有titlebar




二、代码方式及对某个Activty有效:

在onCreate中增加: requestWindowFeature(Window.FEATURE_NO_TITLE);



void onCreate(Bundle savedInstanceState) {

...

requestWindowFeature(Window.FEATURE_NO_TITLE);

...

}

你可能感兴趣的:(android,xml)