某个人名单:我如何获得联系电话号码?
private void getCntctList(List<GroupMembers> mids){
ArrayList<ContactItem> contact_list = new ArrayList<ContactItem>();
ContentResolver cr = getContentResolver();
String where = "People._ID IN (";
for (GroupMembers g : mids) {
where += g.personId + ",";
}
where = where.substring(0,where.length()-1) + ")";
Cursor contactCur = cr.query(????, null, where, null, null);
if (contactCur.getCount() > 0) {
while (contactCur.moveToNext()) {
...
}
}
}