可能重复:
What do I have to add to a layout to hide the titlebar?
如何删除电池下方的标题,时间栏显示?
不确定该栏的术语,但在此图片中它是“嵌套XML布局”栏:
答案 0 :(得分:73)
将android:theme
属性添加到AndroidManifest.xml:
<application android:theme="@android:style/Theme.NoTitleBar">
答案 1 :(得分:19)
在setContentView()
requestWindowFeature(Window.FEATURE_NO_TITLE);
使用此AndroidManifest文件
android:theme="@android:style/Theme.NoTitleBar"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"