Honeycomb 中的上下文操作栏

发布于 2024-11-07 02:18:47 字数 181 浏览 0 评论 0原文

我正在寻找从 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 技术交流群。

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

发布评论

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

评论(1

可爱咩 2024-11-14 02:18:47

调用 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 an ActionMode.Callback object that will manage the lifecycle of the contextual mode. startActionMode will return an ActionMode object if starting the mode was successful, or null 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.

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