我正在创建一个Android应用程序,它需要查看来自手机联系人的联系人并添加联系人或将其同步到我的应用程序中。是否有可能做到这一点?怎么样?
谢谢..
答案 0 :(得分:1)
是的,绝对可以使用内容解析器和光标
e.g。阅读联系人姓名
Cursor cursor = getContentResolver().
query( Contacts.CONTENT_URI,
new String[]{Contacts.DISPLAY_NAME}, null, null,null);
if(cursor!=null){
while(cursor.moveToNext()){
String name = cursor.getString(cursor.getColumnIndex(Contacts.DISPLAY_NAME))
}
使用以下链接获取更多信息
http://developer.android.com/guide/topics/providers/content-providers.html