如何在android中以编程方式显示联系人列表?
Posted
技术标签:
【中文标题】如何在android中以编程方式显示联系人列表?【英文标题】:How to display contact list programmatically in android? 【发布时间】:2012-03-23 19:12:00 【问题描述】:我想通过单击按钮直接在我的应用程序中显示手机的联系人日志,以便选择联系人及其号码。有人可以帮我吗?
【问题讨论】:
【参考方案1】:我得到了答案。 :)
String myData = "content://contacts/people/";
Intent myActivity2 = newIntent(Intent.ACTION_VIEW, Uri.parse( myData) );
startActivity(myActivity2);
或者我们可以使用
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE);
startActivityForResult(intent, 2);
【讨论】:
以上是关于如何在android中以编程方式显示联系人列表?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Apex 在 SalesForce 中以编程方式访问报告