Android2.0 如何設定和讀取聯絡人的分組(Group)

l_serein發表於2012-08-11

其實聯絡人分組實現原理是:

根據Data.MIMETYPE為GroupMembership型別,data1中的組id來進行分組。

 

設定ContactsContract.Data.CONTENT_URI中的ContactsContract.Data.MIMETYPE 為ContactsContract.CommonDataKinds.GroupMembership.CONTENT_ITEM_TYPE型別,data1欄位為某一分組的組ID,該值可查詢ContactsContract.Groups.CONTENT_URI(該表儲存了各分組的組_id,組名稱title等分組資訊)得到。

 

 

例如查詢具有某一分組的所有聯絡人的ContactsContract.RawContacts._ID,程式碼如下

 

Java程式碼  收藏程式碼
  1. public static final String[] RAW_PROJECTION = new String[]{  
  2.         ContactsContract.Data.RAW_CONTACT_ID,  
  3. };  
  4.       
  5. public static final String RAW_CONTACTS_WHERE =   
  6.                 ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID +"=?" +" and " +   
  7.                 ContactsContract.Data.MIMETYPE+ "=" + "'" +   
  8.                 ContactsContract.CommonDataKinds.GroupMembership.CONTENT_ITEM_TYPE + "'" ;  

   //具有同一組id的原始聯絡人的id

Java程式碼  收藏程式碼
  1. Cursor mMemberRawIds =rc.query(URI, RAW_PROJECTION,  
  2.                                                       RAW_CONTACTS_WHERE,   
  3.                                                       new String[]{""+groupId},  
  4.                                                       "data1 asc");  
 

相關文章