Honeycomb 中的上下文操作栏
我想根据屏幕上选择的内容更改代码中的操作栏按钮。
这有点像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取操作栏项目,请使用 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.