未知联系人上的 QuickContactBadge
我正在从公司网站下载联系人列表。联系人可能在电话上,也可能不在电话上。我想使用 QuickContactBadge,因为下载的信息将包含:办公室电话号码、手机号码、电子邮件、姓名。这样,用户可以快速查看和联系公司网站上列出的人员,或将他们添加到电话联系人列表中。
所有示例都展示了如何使用现有联系人。
当我想添加未知的联系人姓名、电子邮件和电话号码时,我从列表视图适配器调用: QuickContactBadge 徽章 = (QuickContactBadge) baseAct.findViewById(R.id.badge_small); 徽章.assignContactFromPhone("888-555-1212", true);
但它在 allocateContactFromPhone 上崩溃。
我可以为此使用快速联系人徽章,还是应该创建一个单独的视图,其中包含用于电话、电子邮件和导入联系人的按钮?
山姆B
I'm downloading a list of contacts from a company website. The contacts may or may not be on the phone. I'd like to use the QuickContactBadge since the downloaded information will contain: office phone number, mobile number, email, name. This way users can quickly view and contact the people listed on the company website or add them to their list of phone contacts.
All the examples show how to use existing contacts.
When I want to add an unknown contact name, email and phone numbers I call from my listview adapter:
QuickContactBadge badge = (QuickContactBadge) baseAct.findViewById(R.id.badge_small);
badge.assignContactFromPhone("888-555-1212", true);
but it crashes on assignContactFromPhone.
Can I use the quick contact badge for this or should I just create a separate view that has a button for phone, email, and importing a contact?
SamB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你看看这个。由于 QuickContacts 引用的是 RawContacts.CONTENT_URI :在查询之前,您应该将这些联系人添加到此提供程序,或者使用源来获取您自己的版本!
I suggest you have a look at this. As QuickContacts refer to the RawContacts.CONTENT_URI : prior querying it you should add those contacts to this provider, or work around with the source to get your own version !