在创建的应用程序中查看和添加联系

时间:2011-01-05 14:47:37

标签: java android eclipse

我正在创建一个Android应用程序,它需要查看来自手机联系人的联系人并添加联系人或将其同步到我的应用程序中。是否有可能做到这一点?怎么样?

谢谢..

1 个答案:

答案 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