Android标题栏删除

时间:2010-03-15 10:30:21

标签: android

  

可能重复:
  What do I have to add to a layout to hide the titlebar?

如何删除电池下方的标题,时间栏显示?

不确定该栏的术语,但在此图片中它是“嵌套XML布局”栏:

2 个答案:

答案 0 :(得分:73)

android:theme属性添加到AndroidManifest.xml:

<application android:theme="@android:style/Theme.NoTitleBar">

答案 1 :(得分:19)

setContentView()

之前的Java文件中使用此功能
requestWindowFeature(Window.FEATURE_NO_TITLE);

使用此AndroidManifest文件

  android:theme="@android:style/Theme.NoTitleBar"
  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"