android2.1 取得通讯录联系人名字和电话号码

// 取得ContentResolver对象      
        ContentResolver cr = getContentResolver();        
        // 取得通讯录的光标      
        String orderBy = PhoneLookup.DISPLAY_NAME + " COLLATE LOCALIZED ASC";   
        Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, orderBy);      
  
        // 遍历通讯录   
        ArrayList<HashMap<String, Object>> listItem = new ArrayList<HashMap<String, Object>>();   
        for(int i=0; i<cursor.getCount() ;i++)   
        {   
            HashMap<String, Object> map = new HashMap<String, Object>();   
               
            cursor.moveToPosition(i);   
               
            // No.   
            map.put(COLUMN_ID, i + 1);   
               
            // 取得联系人名字      
            int nameFieldColumnIndex = cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);      
            String name = cursor.getString(nameFieldColumnIndex);    
            map.put(COLUMN_NAME, name);   
               
            // 取得联系人ID      
            String contactId = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));      
            Cursor phone = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,   
                    null,   
                    ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = " + contactId,   
                    null, null);      
             
            String number = "";   
            // 取得电话号码(可能存在多个号码)      
            for(int j = 0; j < phone.getCount(); j++)     
            {      
                phone.moveToPosition(j);   
                String strPhoneNumber = phone.getString(phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));      
                if (j > 0) {   
                    number += " , ";     
                }   
                number += strPhoneNumber;    
            }      
            map.put(COLUMN_NUMBER, number);   
            Log.d(TAG, "number = " + number);   
            phone.close();    
               
            listItem.add(map);   
        }   
        cursor.close();   
           
        // 生成适配器的Item和动态数组对应的元素   
        SimpleAdapter listItemAdapter = new SimpleAdapter(this,   
                listItem,// 数据源   
                R.layout.list_item,// ListItem的XML实现   
                // 动态数组与ListItem对应的子项   
                new String[] { COLUMN_ID, COLUMN_NAME, COLUMN_NUMBER },      
                new int[] { R.id.TextView1, R.id.TextView2, R.id.TextView3 });   
        lv.setAdapter(listItemAdapter);     
    }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值