国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android根據(jù)電話(huà)號(hào)碼獲得聯(lián)系人頭像實(shí)例代碼

2020-04-11 11:44:33
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

在日常Android手機(jī)的使用過(guò)程中,根據(jù)電話(huà)號(hào)碼獲得聯(lián)系人頭像,是經(jīng)常會(huì)碰到的問(wèn)題。本文即以實(shí)例形式講述了Android根據(jù)電話(huà)號(hào)碼獲得聯(lián)系人頭像是實(shí)現(xiàn)代碼。分享給大家供大家參考之用。具體方法如下:

首先,通過(guò)ContentProvider,可以訪(fǎng)問(wèn)Android中的聯(lián)系人等數(shù)據(jù)。常用的Uri有:

聯(lián)系人信息Uri:content://com.android.contacts/contacts
聯(lián)系人電話(huà)Uri:content://com.android.contacts/data/phones
聯(lián)系人郵件Uri:content://com.android.contacts/data/emails

并且提供了根據(jù)電話(huà)號(hào)碼獲取data表數(shù)據(jù)的功能,方法為:data/phones/filter/號(hào)碼,返回一個(gè)數(shù)據(jù)集。再通過(guò)數(shù)據(jù)集獲得該聯(lián)系人的contact_id,根據(jù)contact_id打開(kāi)頭像圖片的InputStream,最后用BitmapFactory.decodeStream()獲得聯(lián)系人的頭像。

具體功能代碼如下:

// 根據(jù)號(hào)碼獲得聯(lián)系人頭像public static void get_people_image(String x_number){     // 獲得Uri  Uri uriNumber2Contacts = Uri.parse("content://com.android.contacts/"      + "data/phones/filter/" + x_number);   // 查詢(xún)Uri,返回?cái)?shù)據(jù)集  Cursor cursorCantacts = context.getContentResolver().query(      uriNumber2Contacts,       null,       null,                  null,       null);  // 如果該聯(lián)系人存在  if (cursorCantacts.getCount() > 0) {     // 移動(dòng)到第一條數(shù)據(jù)          cursorCantacts.moveToFirst();          // 獲得該聯(lián)系人的contact_id           Long contactID = cursorCantacts.getLong(cursorCantacts.getColumnIndex("contact_id"));          // 獲得contact_id的Uri           Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactID);          // 打開(kāi)頭像圖片的InputStream          InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(context.getContentResolver(), uri);           // 從InputStream獲得bitmap          bmp_head = BitmapFactory.decodeStream(input);   }<br>}

希望本文所述對(duì)大家的Android程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 锡林郭勒盟| 瓮安县| 麦盖提县| 吉安市| 山阴县| 玉门市| 揭东县| 合川市| 巍山| 阜新市| 内黄县| 健康| 河西区| 隆昌县| 化德县| 桃园市| 阆中市| 乌兰察布市| 高雄市| 汝城县| 南开区| 连城县| 射阳县| 灵山县| 视频| 定南县| 琼海市| 临潭县| 娄烦县| 凌海市| 林甸县| 荆门市| 历史| 上杭县| 承德县| 南华县| 铁力市| 卓资县| 长垣县| 来凤县| 合阳县|