android如何获取联系人所有信息

只要是开发和手机通讯录有关的应用,总要学会获取联系人信息,每次都google很麻烦,怎么办?

写一个工具类,获取到通讯录里所有的信息并分好类,至于大家怎么用就不管了,看下代码就都明白了,虽然代码很多,但是很简单,大部分都已分类,如果有没有写上的,大家可以打开自己手机上通讯录数据库,里面的字段都有标明,用的内容提供者,因此我们只需要拿到那个字段名基本上就能取出数据了。

工具类:

package com.example.test;

import java.util.ArrayList;
import java.util.List;

import org.json.JSONException;
import org.json.JSONObject;

import android.content.Context;
import android.database.Cursor;
import android.provider.ContactsContract.CommonDataKinds.Email;
import android.provider.ContactsContract.CommonDataKinds.Event;
import android.provider.ContactsContract.CommonDataKinds.Im;
import android.provider.ContactsContract.CommonDataKinds.Nickname;
import android.provider.ContactsContract.CommonDataKinds.Note;
import android.provider.ContactsContract.CommonDataKinds.Organization;
import android.provider.ContactsContract.CommonDataKinds.Phone;
import android.provider.ContactsContract.CommonDataKinds.StructuredName;
import android.provider.ContactsContract.CommonDataKinds.StructuredPostal;
import android.provider.ContactsContract.CommonDataKinds.Website;
import android.provider.ContactsContract.Contacts;
import android.provider.ContactsContract.Data;
import android.util.Log;

/**
 *
 * @author larson
 *
 */
public class ContactUtil {
 private List<Contacts> list;
 private Context context;
 private JSONObject contactData;
 private JSONObject jsonObject;

 public ContactUtil(Context context) {
 this.context = context;
 }

 // ContactsContract.Contacts.CONTENT_URI= content://com.android.contacts/contacts;
 // ContactsContract.Data.CONTENT_URI = content://com.android.contacts/data;

 /**
 * 获取联系人信息,并把数据转换成json数据
 *
 * @return
 * @throws JSONException
 */
 public String getContactInfo() throws JSONException {
 list = new ArrayList<Contacts>();
 contactData = new JSONObject();
 String mimetype = "";
 int oldrid = -1;
 int contactId = -1;
 // 1.查询通讯录所有联系人信息,通过id排序,我们看下android联系人的表就知道,所有的联系人的数据是由RAW_CONTACT_ID来索引开的
 // 所以,先获取所有的人的RAW_CONTACT_ID
 Cursor cursor = context.getContentResolver().query(Data.CONTENT_URI,
  null, null, null, Data.RAW_CONTACT_ID);
 int numm = 0;
 while (cursor.moveToNext()) {
  contactId = cursor.getInt(cursor
   .getColumnIndex(Data.RAW_CONTACT_ID));
  if (oldrid != contactId) {
  jsonObject = new JSONObject();
  contactData.put("contact" + numm, jsonObject);
  numm++;
  oldrid = contactId;
  }
  mimetype = cursor.getString(cursor.getColumnIndex(Data.MIMETYPE)); // 取得mimetype类型,扩展的数据都在这个类型里面
  // 1.1,拿到联系人的各种名字
  if (StructuredName.CONTENT_ITEM_TYPE.equals(mimetype)) {
  cursor.getString(cursor
   .getColumnIndex(StructuredName.DISPLAY_NAME));
  String prefix = cursor.getString(cursor
   .getColumnIndex(StructuredName.PREFIX));
  jsonObject.put("prefix", prefix);
  String firstName = cursor.getString(cursor
   .getColumnIndex(StructuredName.FAMILY_NAME));
  jsonObject.put("firstName", firstName);
  String middleName = cursor.getString(cursor
   .getColumnIndex(StructuredName.MIDDLE_NAME));
  jsonObject.put("middleName", middleName);
  String lastname = cursor.getString(cursor
   .getColumnIndex(StructuredName.GIVEN_NAME));
  jsonObject.put("lastname", lastname);
  String suffix = cursor.getString(cursor
   .getColumnIndex(StructuredName.SUFFIX));
  jsonObject.put("suffix", suffix);
  String phoneticFirstName = cursor.getString(cursor
   .getColumnIndex(StructuredName.PHONETIC_FAMILY_NAME));
  jsonObject.put("phoneticFirstName", phoneticFirstName);

  String phoneticMiddleName = cursor.getString(cursor
   .getColumnIndex(StructuredName.PHONETIC_MIDDLE_NAME));
  jsonObject.put("phoneticMiddleName", phoneticMiddleName);
  String phoneticLastName = cursor.getString(cursor
   .getColumnIndex(StructuredName.PHONETIC_GIVEN_NAME));
  jsonObject.put("phoneticLastName", phoneticLastName);
  }
  // 1.2 获取各种电话信息
  if (Phone.CONTENT_ITEM_TYPE.equals(mimetype)) {
  int phoneType = cursor
   .getInt(cursor.getColumnIndex(Phone.TYPE)); // 手机
  if (phoneType == Phone.TYPE_MOBILE) {
   String mobile = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("mobile", mobile);
  }
  // 住宅电话
  if (phoneType == Phone.TYPE_HOME) {
   String homeNum = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("homeNum", homeNum);
  }
  // 单位电话
  if (phoneType == Phone.TYPE_WORK) {
   String jobNum = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("jobNum", jobNum);
  }
  // 单位传真
  if (phoneType == Phone.TYPE_FAX_WORK) {
   String workFax = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("workFax", workFax);
  }
  // 住宅传真
  if (phoneType == Phone.TYPE_FAX_HOME) {
   String homeFax = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));

   jsonObject.put("homeFax", homeFax);
  } // 寻呼机
  if (phoneType == Phone.TYPE_PAGER) {
   String pager = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("pager", pager);
  }
  // 回拨号码
  if (phoneType == Phone.TYPE_CALLBACK) {
   String quickNum = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("quickNum", quickNum);
  }
  // 公司总机
  if (phoneType == Phone.TYPE_COMPANY_MAIN) {
   String jobTel = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("jobTel", jobTel);
  }
  // 车载电话
  if (phoneType == Phone.TYPE_CAR) {
   String carNum = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("carNum", carNum);
  } // ISDN
  if (phoneType == Phone.TYPE_ISDN) {
   String isdn = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("isdn", isdn);
  } // 总机
  if (phoneType == Phone.TYPE_MAIN) {
   String tel = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("tel", tel);
  }
  // 无线装置
  if (phoneType == Phone.TYPE_RADIO) {
   String wirelessDev = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));

   jsonObject.put("wirelessDev", wirelessDev);
  } // 电报
  if (phoneType == Phone.TYPE_TELEX) {
   String telegram = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("telegram", telegram);
  }
  // TTY_TDD
  if (phoneType == Phone.TYPE_TTY_TDD) {
   String tty_tdd = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("tty_tdd", tty_tdd);
  }
  // 单位手机
  if (phoneType == Phone.TYPE_WORK_MOBILE) {
   String jobMobile = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("jobMobile", jobMobile);
  }
  // 单位寻呼机
  if (phoneType == Phone.TYPE_WORK_PAGER) {
   String jobPager = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("jobPager", jobPager);
  } // 助理
  if (phoneType == Phone.TYPE_ASSISTANT) {
   String assistantNum = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("assistantNum", assistantNum);
  } // 彩信
  if (phoneType == Phone.TYPE_MMS) {
   String mms = cursor.getString(cursor
    .getColumnIndex(Phone.NUMBER));
   jsonObject.put("mms", mms);
  }

  String mobileEmail = cursor.getString(cursor
   .getColumnIndex(Email.DATA));
  jsonObject.put("mobileEmail", mobileEmail);
  }
 }
 // 查找event地址
 if (Event.CONTENT_ITEM_TYPE.equals(mimetype)) { // 取出时间类型
  int eventType = cursor.getInt(cursor.getColumnIndex(Event.TYPE)); // 生日
  if (eventType == Event.TYPE_BIRTHDAY) {
  String birthday = cursor.getString(cursor
   .getColumnIndex(Event.START_DATE));
  jsonObject.put("birthday", birthday);
  }
  // 周年纪念日
  if (eventType == Event.TYPE_ANNIVERSARY) {
  String anniversary = cursor.getString(cursor
   .getColumnIndex(Event.START_DATE));
  jsonObject.put("anniversary", anniversary);
  }
 }
 // 获取即时通讯消息
 if (Im.CONTENT_ITEM_TYPE.equals(mimetype)) { // 取出即时消息类型
  int protocal = cursor.getInt(cursor.getColumnIndex(Im.PROTOCOL));
  if (Im.TYPE_CUSTOM == protocal) {
  String workMsg = cursor.getString(cursor
   .getColumnIndex(Im.DATA));
  jsonObject.put("workMsg", workMsg);
  } else if (Im.PROTOCOL_MSN == protocal) {
  String workMsg = cursor.getString(cursor
   .getColumnIndex(Im.DATA));
  jsonObject.put("workMsg", workMsg);
  }
  if (Im.PROTOCOL_QQ == protocal) {
  String instantsMsg = cursor.getString(cursor
   .getColumnIndex(Im.DATA));

  jsonObject.put("instantsMsg", instantsMsg);
  }
 }
 // 获取备注信息
 if (Note.CONTENT_ITEM_TYPE.equals(mimetype)) {
  String remark = cursor.getString(cursor.getColumnIndex(Note.NOTE));
  jsonObject.put("remark", remark);
 }
 // 获取昵称信息
 if (Nickname.CONTENT_ITEM_TYPE.equals(mimetype)) {
  String nickName = cursor.getString(cursor
   .getColumnIndex(Nickname.NAME));
  jsonObject.put("nickName", nickName);
 }
 // 获取组织信息
 if (Organization.CONTENT_ITEM_TYPE.equals(mimetype)) { // 取出组织类型
  int orgType = cursor.getInt(cursor
   .getColumnIndex(Organization.TYPE)); // 单位
  if (orgType == Organization.TYPE_CUSTOM) { // if (orgType ==
       // Organization.TYPE_WORK)
       // {
  String company = cursor.getString(cursor
   .getColumnIndex(Organization.COMPANY));
  jsonObject.put("company", company);
  String jobTitle = cursor.getString(cursor
   .getColumnIndex(Organization.TITLE));
  jsonObject.put("jobTitle", jobTitle);
  String department = cursor.getString(cursor
   .getColumnIndex(Organization.DEPARTMENT));
  jsonObject.put("department", department);
  }
 }
 // 获取网站信息
 if (Website.CONTENT_ITEM_TYPE.equals(mimetype)) { // 取出组织类型
  int webType = cursor.getInt(cursor.getColumnIndex(Website.TYPE)); // 主页
  if (webType == Website.TYPE_CUSTOM) {

  String home = cursor.getString(cursor
   .getColumnIndex(Website.URL));
  jsonObject.put("home", home);
  } // 主页
  else if (webType == Website.TYPE_HOME) {
  String home = cursor.getString(cursor
   .getColumnIndex(Website.URL));
  jsonObject.put("home", home);
  }
  // 个人主页
  if (webType == Website.TYPE_HOMEPAGE) {
  String homePage = cursor.getString(cursor
   .getColumnIndex(Website.URL));
  jsonObject.put("homePage", homePage);
  }
  // 工作主页
  if (webType == Website.TYPE_WORK) {
  String workPage = cursor.getString(cursor
   .getColumnIndex(Website.URL));
  jsonObject.put("workPage", workPage);
  }
 }
 // 查找通讯地址
 if (StructuredPostal.CONTENT_ITEM_TYPE.equals(mimetype)) { // 取出邮件类型
  int postalType = cursor.getInt(cursor
   .getColumnIndex(StructuredPostal.TYPE)); // 单位通讯地址
  if (postalType == StructuredPostal.TYPE_WORK) {
  String street = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.STREET));
  jsonObject.put("street", street);
  String ciry = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.CITY));
  jsonObject.put("ciry", ciry);
  String box = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.POBOX));
  jsonObject.put("box", box);
  String area = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.NEIGHBORHOOD));
  jsonObject.put("area", area);

  String state = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.REGION));
  jsonObject.put("state", state);
  String zip = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.POSTCODE));
  jsonObject.put("zip", zip);
  String country = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.COUNTRY));
  jsonObject.put("country", country);
  }
  // 住宅通讯地址
  if (postalType == StructuredPostal.TYPE_HOME) {
  String homeStreet = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.STREET));
  jsonObject.put("homeStreet", homeStreet);
  String homeCity = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.CITY));
  jsonObject.put("homeCity", homeCity);
  String homeBox = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.POBOX));
  jsonObject.put("homeBox", homeBox);
  String homeArea = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.NEIGHBORHOOD));
  jsonObject.put("homeArea", homeArea);
  String homeState = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.REGION));
  jsonObject.put("homeState", homeState);
  String homeZip = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.POSTCODE));
  jsonObject.put("homeZip", homeZip);
  String homeCountry = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.COUNTRY));
  jsonObject.put("homeCountry", homeCountry);
  }
  // 其他通讯地址
  if (postalType == StructuredPostal.TYPE_OTHER) {
  String otherStreet = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.STREET));
  jsonObject.put("otherStreet", otherStreet);

  String otherCity = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.CITY));
  jsonObject.put("otherCity", otherCity);
  String otherBox = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.POBOX));
  jsonObject.put("otherBox", otherBox);
  String otherArea = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.NEIGHBORHOOD));
  jsonObject.put("otherArea", otherArea);
  String otherState = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.REGION));
  jsonObject.put("otherState", otherState);
  String otherZip = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.POSTCODE));
  jsonObject.put("otherZip", otherZip);
  String otherCountry = cursor.getString(cursor
   .getColumnIndex(StructuredPostal.COUNTRY));
  jsonObject.put("otherCountry", otherCountry);
  }
 }
 cursor.close();
 Log.i("contactData", contactData.toString());
 return contactData.toString();
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android编程实现通讯录中联系人的读取,查询,添加功能示例

    本文实例讲述了Android编程实现通讯录中联系人的读取,查询,添加功能.分享给大家供大家参考,具体如下: 先加二个读和写权限: <uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_CONTACTS" /> 具体代码: package com.ebo

  • Android跳转到系统联系人及拨号或短信界面

    现在开发中的功能需要直接跳转到拨号.联系人.短信界面等等,查找了很多资料,自己整理了一下. 1.跳转到拨号界面,代码如下:  1)直接拨打 Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber)); startActivity(intentPhone); 2)跳转到拨号界面 Intent intent = newIntent(Intent.ACTION_DIAL,Uri.pa

  • Android仿微信联系人列表字母侧滑控件

    仿微信联系人列表字母侧滑控件, 侧滑控件参考了以下博客: Android实现ListView的A-Z字母排序和过滤搜索功能 首先分析一下字母侧滑控件应该如何实现,根据侧滑控件的高度和字母的数量来平均计算每个字母应该占据的高度. 在View的onDraw()方法下绘制每一个字母 protected void onDraw(Canvas canvas) { super.onDraw(canvas); int height = getHeight();// 获取对应高度 int width = get

  • android利用ContentResolver访问者获取手机联系人信息

    利用ContentResolver内容访问者,获取手机联系人信息我做了两种不同的做法.第一种,直接获取所有手机联系人信息,展示在ListView中.第二种,通过Butten按钮跳转到系统的手机联系人界面,单个获取手机联系人信息,展示在ListView中,结果如下: 第一种: 第二种: 第一种:直接获取所有手机联系人信息 首先需要在AndroidManifest.xml文件中添加权限: <uses-permission android:name="android.permission.REA

  • Android保存联系人到通讯录的方法

    上一篇文章讲了如何获取所有联系人,这篇文章就讲下怎么保存联系人数据到本机通讯录.这里我就假设你已经拿到了要保存的联系人数据. 因为是一个工具类,所以我这里就只给一个方法了,也是很简单,但是写的没有读取联系人的数据那么多,要保存更多其实看下如何读取的就会了. 直接上源码: /** * 添加联系人到本机 * * @param context * @param contact * @return */ public static boolean addContact(Context context,

  • Android获取手机联系人的方法

    Android 获取系统联系人信息的实例 一.获取手机联系人姓名及手机号 //跳转到系统联系人应用 Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); try { startActivityForResult(intent, Contacts1RequestCode); } catch (Exception e) { LogManager.e("打开联系人信息失败"

  • Android ContentProvider实现获取手机联系人功能

    在之前项目中有用到关于获取手机联系人的部分,闲置就想和大家分享一下,话不多说,上代码: java部分: package com.example.content; import android.content.ContentResolver; import android.database.Cursor; import android.net.Uri; import android.support.v7.app.AppCompatActivity; import android.os.Bundle

  • Android实现获取联系人电话号码功能

    本篇文档主要记录一下获取联系人的电话号码的一种方式. 1.选择联系人 ............ //构造一个隐式的Intent,拉起联系人界面 final Intent pickIntent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); mSuspectButton = (Button)v.findViewById(R.id.crime_suspect); mSuspectButton.setOn

  • android如何获取联系人所有信息

    只要是开发和手机通讯录有关的应用,总要学会获取联系人信息,每次都google很麻烦,怎么办? 写一个工具类,获取到通讯录里所有的信息并分好类,至于大家怎么用就不管了,看下代码就都明白了,虽然代码很多,但是很简单,大部分都已分类,如果有没有写上的,大家可以打开自己手机上通讯录数据库,里面的字段都有标明,用的内容提供者,因此我们只需要拿到那个字段名基本上就能取出数据了. 工具类: package com.example.test; import java.util.ArrayList; import

  • Android获取联系人姓名和电话代码

    在开发中往往有要获取联系人列表的功能,但是这次却不是获取联系人列表,而是在联系人列表点击单个联系人,获取单个联系人的姓名和电话,并设置在指定的输入框内,方便用户的使用:以下是实现的代码: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:la

  • Android ContentProvider获取手机联系人实例

    在做项目的时候,因为要用到我们自动获取联系人的姓名和电话,就想到了ContentProvider分享数据的功能,这样做既节省了时间,也减少了我们输入错误号码的几率,所以,想在这里把小demo分享给大家,方便以后要用的时候可以看看 我们先看下获取所有联系人的方式,把所有联系人展示在listView上 public void getLinkMan(View view){ //获取联系人 Uri uri=Uri.parse("content://com.android.contacts/raw_con

  • Android编程操作联系人的方法(查询,获取,添加等)

    本文实例讲述了Android编程操作联系人的方法.分享给大家供大家参考,具体如下: Android系统中的联系人也是通过ContentProvider来对外提供数据的,我们这里实现获取所有联系人.通过电话号码获取联系人.添加联系人.使用事务添加联系人. 获取所有联系人 1. Android系统中的联系人也是通过ContentProvider来对外提供数据的 2. 数据库路径为:/data/data/com.android.providers.contacts/database/contacts2

  • Android获取联系人头像的方法

    本文实例讲述了Android获取联系人头像的方法.分享给大家供大家参考,具体如下: public byte[] getPhoto(String people_id) { String photo_id = null; String selection1 = ContactsContract.Contacts._ID + " = " + people_id; Cursor cur1 = getContentResolver().query( ContactsContract.Contac

  • Android手机卫士之获取联系人信息显示与回显

    前面的文章已经实现相关的布局,本文接着进行相关的功能实现 读取系统联系人 当点击"选择联系人"按钮后,弹出联系人列表,读取系统联系人分如下几个步骤: 系统联系人提供了一个内容提供者,通过内容解析器,匹配Url地址 1.内容解析器 2.Url地址,查看系统联系人数据库,内容提供者源码 先看api文档的清单文件,后看java类(联系人数据库有多张表) contents://com.android.contacts/表名 3.系统联系人数据库中核心表的表结构 raw_contacts 联系人

  • Android API开发之SMS短信服务处理和获取联系人的方法

    本文实例讲述了Android API开发之SMS短信服务处理和获取联系人的方法.分享给大家供大家参考,具体如下: Android API支持开发可以发送和接收SMS消息的应用程序.目前我们开发过程中使用的Android模拟器还不支持发送SMS,但它可以接收SMS.现在我们来探索一下Android对SMS的支持,我们将会构建一个小小的应用程序来监听移动设备(或模拟器)上接收到的SMS消息,并将它显示出来. 我们来定义一个Intent接收器来处理SMS接收事件: package com.wissen

  • Android利用ContentProvider获取联系人信息

    本文实例为大家分享了Android利用ContentProvider获取联系人信息的具体代码,供大家参考,具体内容如下 在写代码前我们首先看一下运行的效果 运行效果如下: 点了获取联系人就展示如下效果 读取联系人信息的例子(MainActivity) package com.example.administrator.myapplication; import android.content.ContentResolver; import android.database.Cursor; imp

  • Android编程获取sdcard音乐文件的方法

    本文实例讲述了Android编程获取sdcard音乐文件的方法.分享给大家供大家参考,具体如下: 复制代码 代码如下: Cursor  query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder); Uri:指明要查询的数据库名称加上表的名称,从MediaStore中我们可以找到相应信息的参数,具体请参考开发文档. Projection: 指定查询数据库表中的哪几列,

随机推荐