如何显示或出现TitleBar? (我在 Manifest.xml 中设置 NoTitleBar)
我正在寻找在我的应用程序中设置一种布局中的默认标题栏。但我将应用程序的主题设置为 NoTitleBar。
如何通过代码添加来设置/显示标题栏? 谢谢。
I'm looking for to set the default titlebar in one layout into my app. But I'd set the Theme of the app to NoTitleBar.
How can I add by code to set/appear the titlebar?
Thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在
AndroidManifest.xml
文件中为每个 Activity 指定主题:You can specify the theme for each activity in your
AndroidManifest.xml
file:您可以通过在
上定义主题来覆盖
上设置的主题。You can override a theme set on
<application>
, by defining theme on<activity>
.