From 860621aa8a8ce2a4ab3831b3b0eb162e40294bc6 Mon Sep 17 00:00:00 2001 From: FXH <230007021@qq.com> Date: Tue, 17 Sep 2024 12:12:23 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=99=E6=AE=B5=E4=BB=A3=E7=A0=81=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E4=BA=86=E4=B8=80=E4=B8=AA=20Contact=20=E7=B1=BB?= =?UTF-8?q?=EF=BC=8C=E5=AE=83=E6=8F=90=E4=BE=9B=E4=BA=86=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E9=9D=99=E6=80=81=E6=96=B9=E6=B3=95=20getContact=EF=BC=8C?= =?UTF-8?q?=E8=AF=A5=E6=96=B9=E6=B3=95=E5=8F=AF=E4=BB=A5=E6=A0=B9=E6=8D=AE?= =?UTF-8?q?=E7=94=B5=E8=AF=9D=E5=8F=B7=E7=A0=81=E6=9F=A5=E8=AF=A2=E8=81=94?= =?UTF-8?q?=E7=B3=BB=E4=BA=BA=E5=90=8D=E7=A7=B0=E3=80=82=E5=AE=83=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E4=BA=86=E7=BC=93=E5=AD=98=E6=9D=A5=E6=8F=90=E9=AB=98?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=95=88=E7=8E=87=EF=BC=8C=E5=B9=B6=E5=A4=84?= =?UTF-8?q?=E7=90=86=E4=BA=86=E5=8F=AF=E8=83=BD=E7=9A=84=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E6=83=85=E5=86=B5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Contact.java | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 Contact.java diff --git a/Contact.java b/Contact.java new file mode 100644 index 0000000..0c30f50 --- /dev/null +++ b/Contact.java @@ -0,0 +1,91 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// 包声明,定义了这个类所在的包名 +package net.micode.notes.data; + +// 导入所需的Android类库 +import android.content.Context; +import android.database.Cursor; +import android.provider.ContactsContract.CommonDataKinds.Phone; +import android.provider.ContactsContract.Data; +import android.telephony.PhoneNumberUtils; +import android.util.Log; + +// 导入Java的HashMap类,用于存储联系人缓存 +import java.util.HashMap; + +// 定义Contact类 +public class Contact { + // 定义一个静态的HashMap,用于缓存联系人信息,避免重复查询 + private static HashMap sContactCache; + // 定义一个TAG,用于日志输出 + private static final String TAG = "Contact"; + + // 定义一个静态常量,用于构建查询语句 + private static final String CALLER_ID_SELECTION = "PHONE_NUMBERS_EQUAL(" + Phone.NUMBER + + ",?) AND " + Data.MIMETYPE + "='" + Phone.CONTENT_ITEM_TYPE + "'" + + " AND " + Data.RAW_CONTACT_ID + " IN " + + "(SELECT raw_contact_id " + + " FROM phone_lookup" + + " WHERE min_match = '+')"; + + // 定义一个静态方法,用于根据电话号码获取联系人名称 + public static String getContact(Context context, String phoneNumber) { + // 如果缓存不存在,则初始化缓存 + if(sContactCache == null) { + sContactCache = new HashMap(); + } + + // 如果电话号码已经在缓存中,则直接返回缓存中的联系人名称 + if(sContactCache.containsKey(phoneNumber)) { + return sContactCache.get(phoneNumber); + } + + // 替换查询语句中的占位符,构建具体的查询语句 + String selection = CALLER_ID_SELECTION.replace("+", + PhoneNumberUtils.toCallerIDMinMatch(phoneNumber)); + // 使用ContentResolver查询联系人数据 + Cursor cursor = context.getContentResolver().query( + Data.CONTENT_URI, + new String [] { Phone.DISPLAY_NAME }, + selection, + new String[] { phoneNumber }, + null); + + // 如果查询结果不为空,并且至少有一条数据 + if (cursor != null && cursor.moveToFirst()) { + try { + // 获取联系人名称 + String name = cursor.getString(0); + // 将联系人名称放入缓存 + sContactCache.put(phoneNumber, name); + return name; + } catch (IndexOutOfBoundsException e) { + // 如果获取联系人名称时出现异常,记录错误日志 + Log.e(TAG, " Cursor get string error " + e.toString()); + return null; + } finally { + // 最后,关闭游标 + cursor.close(); + } + } else { + // 如果没有匹配的联系人,记录日志并返回null + Log.d(TAG, "No contact matched with number:" + phoneNumber); + return null; + } + } +}