码迷,mamicode.com
首页 > 移动开发 > 详细

获取手机通讯录信息方法总结

时间:2014-11-04 15:07:42      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   ar   os   使用   java   sp   

1.最简洁的方法

使用类

android.provider.ContactsContract.CommonDataKinds.Phone; 

代码如下:

<span style="font-size:18px;">    Cursor c = getContentResolver().query( ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null,null);  
    startManagingCursor(c);    
    ListAdapter adapter=new SimpleCursorAdapter(this,   
                                android.R.layout.simple_list_item_2,   
                                c,  
                                new String[]{Phone.DISPLAY_NAME,Phone.NUMBER},   
                                new int[]{android.R.id.text1,android.R.id.text2});   </span>

然后就可以使用ListView显示姓名和电话号码了。

注意:

1.如果一个人有两个电话,则分别显示。

2.如果有两个相同的人,也会分别显示,不会显示一个人的。

运行结果:
bubuko.com,布布扣

2.一般方法

   使用类
<span style="font-size:18px;">android.provider.ContactsContract.Contacts </span>
代码如下:
<span style="font-size:18px;">Map<String,String> contacts;  
List<Map<String,String>> list=new ArrayList<Map<String,String>>();  
int nameIndex=-1;  
ContentResolver cr=getContentResolver();  
Cursor cur=cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null,null);  
while(cur.moveToNext()){          
   number="";  
   //得到名字  
   nameIndex=cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME);  
   name=cur.getString(nameIndex);  
   //得到电话号码  
   String contactId = cur.getString(cur  
        .getColumnIndex(ContactsContract.Contacts._ID)); // 获取联系人的ID号,在SQLite中的数据库ID   
        Cursor phone = cr.query(   
        ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,   
        ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = "   
        + contactId, null, null);   
   while (phone.moveToNext()) {   
   String strPhoneNumber = phone.getString(  
                           phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)); // 手机号码字段联系人可能不止一个   
   number += strPhoneNumber+"\n";   
   }   
   contacts=new  HashMap<String,String>();  
   //放入Map  
   contacts.put("name", name);  
   contacts.put("number", number);  
   list.add(contacts);  
   }  
   cur.close(); </span>

得到名字和电话号码,放入Map中,然后再钭Map放入List中。
之后就可以使用ListView显示名字和电话号码:

部分代码如下:

<span style="font-size:18px;">SimpleAdapter adapter = new SimpleAdapter(this,list,android.R.layout.simple_list_item_2,   
        new String[]{"name","number"},    
        new int[]{android.R.id.text1,android.R.id.text2});    
listView.setAdapter(adapter); </span>

注意:

1.若一个姓名下有多个电话号码,则只显示一个姓名,多个号码。

2.若有多个同名的,还是显示多个姓名。

结果截图:

bubuko.com,布布扣

获取手机通讯录信息方法总结

标签:android   style   blog   http   ar   os   使用   java   sp   

原文地址:http://blog.csdn.net/lengyueqiufeng/article/details/40783851

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!