摘要:
//1. 查询 /** * 根据联系人ID获取该联系人的详细信息 */ public ContactorInfo getContactorInfoById(ContentResolver resolver, int contactId) { // 根据联系人ID查contacts表 Cursor cursor = resolver.query(Contacts.CONTENT_URI, null, Contacts._ID + "=" + contactId, null, null); ContactorInfo inf... 阅读全文