更改标题栏
在我的计划中,我有几项活动。当我运行该程序时,标题栏(屏幕顶部)中有应用程序的名称。
如何使用我想要的任何文本更改此标题?我想更改每个活动的文本。
谢谢
In my program I have several activities. When I run the program, I have the name of application in Title bar (top of the screen).
How can I change this title with any text that I wish? I want to change the text of it for each activity.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
setTitle(YOUR_ACTIVITY_NAME_HERE);
在您所需活动的 onCreate 方法下。
Put
setTitle(YOUR_ACTIVITY_NAME_HERE);
under onCreate method of your desired activity.
标题栏显示每个 .android:label="" 中定义的属性。如果您希望它显示相同的名称,无论活动如何,您都可以使用
android:label="@string/title_bar"
,它应该指向您在 res/values 中定义的字符串/strings.xml。The title bar displays the property defined in
android:label=""
for each . If you'd like it to display the same name no matter the activity you could useandroid:label="@string/title_bar"
which should point to a string that you've defined in res/values/strings.xml.