Android标题栏删除

tee*_*ink 20 android

可能重复:
我需要添加什么来隐藏标题栏?

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

不确定该栏的术语,但在这张图片上它是"嵌套XML布局"栏:

Eri*_*ass 73

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

<application android:theme="@android:style/Theme.NoTitleBar">
Run Code Online (Sandbox Code Playgroud)

  • 有关更多信息,请参阅此处http://stackoverflow.com/q/2591036/346309 (2认同)

Chi*_*rag 19

之前在Java文件中使用此命令 setContentView()

requestWindowFeature(Window.FEATURE_NO_TITLE);
Run Code Online (Sandbox Code Playgroud)

使用此AndroidManifest文件

  android:theme="@android:style/Theme.NoTitleBar"
  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
Run Code Online (Sandbox Code Playgroud)