Honeycomb 中的上下文操作栏
我正在寻找从 Honeycomb 中的 gmail 应用程序复制操作栏实现,
不幸的是我无法发布图像,因为我是新来的。
基本上,当您选择一封或多封电子邮件时,您的操作栏会动画化为不同的操作栏: 1. 上下文按钮
2. 主屏幕图标上会出现一个新的“完成”按钮。
有谁知道如何做到这一点?
I'm looking to copy the action bar implementation from the gmail app in Honeycomb
Unfortunately I can't post an image because I'm new here.
Basically, when you select an email or more your action bar animates into a different action bar with:
1.Contextual buttons
2.A new "Done" button appears over the Home icon.
Does anyone have any idea how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
startActionMode< /code>
方法可用于任何视图或您的活动。此方法接受
ActionMode.Callback
将管理上下文模式生命周期的对象。startActionMode
将返回ActionMode
如果启动模式成功,则为 对象;如果请求被拒绝,则为null
。如果您专门为 ListView 创建多选模式,则可以采用快捷方式并使用
CHOICE_MODE_MULTIPLE_MODAL
。Call the
startActionMode
method available on any View or your Activity. This method accepts anActionMode.Callback
object that will manage the lifecycle of the contextual mode.startActionMode
will return anActionMode
object if starting the mode was successful, ornull
if the request was rejected.If you are specifically creating a multiple selection mode for a ListView, you can take a shortcut and use
CHOICE_MODE_MULTIPLE_MODAL
.