首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android2.0contacts的一些步骤

2012-08-31 
android2.0contacts的一些方法依次浏览你的电话本联系人 ?? String[] whereParameters new String[]{Lo

android2.0contacts的一些方法

依次浏览你的电话本联系人

; ?
? String[] whereParameters = new String[]{Long.toString(contactId), ?
? ? ContactsContract.CommonDataKinds.Note.CONTENT_ITEM_TYPE}; ?
? Cursor contacts = getContentResolver().query ?
? (ContactsContract.Data.CONTENT_URI, projection, where, ?
? ? whereParameters, null); ?
? if (contacts.moveToFirst()) { ?
? ?rv = contacts.getString(0); ?
? } ?
? contacts.close(); ?
? return note; ?
?}?

热点排行