更改标题栏

发布于 2024-11-16 03:40:08 字数 167 浏览 3 评论 0原文

在我的计划中,我有几项活动。当我运行该程序时,标题栏(屏幕顶部)中有应用程序的名称。

如何使用我想要的任何文本更改此标题?我想更改每个活动的文本。

谢谢

在此处输入图像描述

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

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悟红尘 2024-11-23 03:40:08

setTitle(YOUR_ACTIVITY_NAME_HERE);

在您所需活动的 onCreate 方法下。

Put

setTitle(YOUR_ACTIVITY_NAME_HERE);

under onCreate method of your desired activity.

被你宠の有点坏 2024-11-23 03:40:08

标题栏显示每个 .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 use android:label="@string/title_bar" which should point to a string that you've defined in res/values/strings.xml.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文