Android 在应用程序中使用联系人操作选择器
我的应用程序中有一个联系人列表,我想显示用户可以对该联系人执行的操作列表(例如呼叫、消息、电子邮件)。
如果您使用“快捷方式 -> 联系人”将联系人添加到桌面,您可以单击联系人图标,然后会看到一个联系人操作列表,您可以使用它来选择操作。
有什么方法可以在我的应用程序中使用它吗?比如系统 api 调用还是我必须自己实现?
谢谢! 莱昂蒂
I have a list of contacts in my application and I'd like to display a list of actions user can do with that contact (like call, message, email).
If you add contact to desktop using "Shortcut->Contact" you can click on the contact icon and be presented with a list of contact actions which you can use to pick an action.
Is there any way I can use it in my application? Like system api call or I will have to implement it myself?
Thanks!
Leonty
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到了!
它称为“QuickContactBadge”:
http://mobile.tutsplus.com/tutorials/android/android-sdk_contact-徽章/
Found it!
It's called "QuickContactBadge":
http://mobile.tutsplus.com/tutorials/android/android-sdk_contact-badge/
根据我对你的问题的理解,你试图在长按时显示选项菜单或上下文菜单。那么如果是这样的话,那么实现起来就非常容易了。
这里是此类菜单的非常简单且很好的指南。我希望它会起作用。
According to my understanding of your question, you are trying to show an Options menu or a Context Menu on Long Press. Well if this is the case, it is very easy to implement.
Here is a very easy and good guide for such menus. I hope it will work.