Android“标头”文本
有没有办法以编程方式修改 Android 应用程序的标头?也许甚至添加一个带有图像的自定义视图?我说的是应用程序顶部的灰色条,其文本可以通过应用程序的 Mainfest.xml 使用活动的 label 属性进行修改:
<activity android:name=".ProgramTracks" android:label="@string/app_name">
</activity>
是否有某种方法,由于缺乏更好的词,弄乱那?
Is there a way to modify an Android app's header programatically? Maybe even adding a custom view with an image in it? I'm talking about the gray bar at the top of an app, whose text can be modified via an app's Mainfest.xml with the label attribute of the activity:
<activity android:name=".ProgramTracks" android:label="@string/app_name">
</activity>
Is there some way to, for a lack of a better word, mess with that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已经在此处进行了讨论。
Already discussed here.
您可以在活动 onCreate() 中添加自定义标头。
编写一个常用的 xml 布局并调用,
其中 R.layout.window_title 是您的自定义布局。
You can add a custom header inside your activitys onCreate().
Write an usual xml layout and call
where R.layout.window_title is your custom layout.