可能重复:
How to hide the title bar for an Activity in XML with existing custom theme
当我在我的设备或模拟器上运行我的应用程序时,我可以在屏幕顶部看到活动名称,例如MainActivity或Hello World等等,我想删除它,但我不知道不知道怎么做。我应该在xml文件中写些东西吗?
答案 0 :(得分:2)
通过向活动声明添加适当的主题,可以从Manifest隐藏活动标题栏(因为这是你所引用的):
android:theme="@android:style/Theme.NoTitleBar"
或来自代码,通过调用
requestWindowFeature(Window.FEATURE_NO_TITLE);
在活动onCreate()