删除默认的标题栏

删除默认的标题栏

本文介绍了删除默认的标题栏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何删除默认顶部的标题栏在一个Android应用程序?

How do I remove the top title bar that's default in an Android app?

灰色你好,Android的吧?

The gray Hello, Android bar?

推荐答案

它非常简单,只是去掉标题栏,机器人添加:主题属性到AndroidManifest.xml

Its very simple to remove the title bar Just, Add the android:theme property to your AndroidManifest.xml

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

这篇关于删除默认的标题栏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 05:20