Honeycomb 中的上下文操作栏

发布于 2024-11-07 09:34:39 字数 114 浏览 3 评论 0原文

我想根据屏幕上选择的内容更改代码中的操作栏按钮。

这有点像 Honeycomb Gmail 应用程序,您可以在其中检查一些邮件项目并获得具有不同外观的不同操作栏。

知道我该怎么做吗?

I'd like to change my Action Bar buttons in code according to whatever is selected on screen.

This is kind of like the Honeycomb Gmail app, where you can check a few mail items and get a different Action Bar with a different look too.

Any idea how I can do this?

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

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

发布评论

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

评论(1

踏雪无痕 2024-11-14 09:34:39

要获取操作栏项目,请使用 getActionBar()< /a> 活动中的方法。获得 ActionBar 项后,您可以使用 ActionBar 类

setCustomView()setDisplayOptions() 项目将帮助定制操作栏的外观更符合您的喜好。

要将项目添加到操作栏,您需要将它们添加到选项菜单。操作栏直接对应3.0以下版本的旧菜单(onCreateOptionsMenu()菜单)。请查看此处

To obtain an action bar item, use the getActionBar() method within an activity. Once you have the ActionBar item, you can add and remove tabs using methods from within the ActionBar class.

The setCustomView() and setDisplayOptions() items will help tailor the action bar to a look more to your liking.

To add items to the action bar, you need to add them to the options menu. The action bar corresponds directly to the old menu (onCreateOptionsMenu() menu) of versions below 3.0. Take a look here.

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