摘要: //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... 阅读全文
posted @ 2012-03-31 10:58 Lost in code 阅读(744) 评论(0) 推荐(1) 编辑