From 5717fda7317ffc0b8f6ff6679b20c28110871752 Mon Sep 17 00:00:00 2001 From: p89qj3nzs <2179258363@qq.com> Date: Mon, 28 Apr 2025 10:38:01 +0800 Subject: [PATCH] ADD file via upload --- Contact.java | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 Contact.java diff --git a/Contact.java b/Contact.java new file mode 100644 index 0000000..94c987c --- /dev/null +++ b/Contact.java @@ -0,0 +1,98 @@ +/* + * 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; + + import java.util.HashMap; + import android.database.Cursor; // 导入Cursor类用于数据库查询 + import android.content.Context; // 导入Context类用于访问应用程序环境 + import android.provider.ContactsContract.CommonDataKinds.Phone; // 导入Phone类用于处理电话号码数据 + import android.telephony.PhoneNumberUtils; // 导入PhoneNumberUtils类用于电话号码格式化和比较 + import android.util.Log; // 导入Log类用于记录日志 + + public class Contact { + // 创建一个HashMap实例,用于缓存电话号码对应联系人名称,以提高查询效率 + private static HashMap sContactCache; + // 定义日志标签,用于记录日志信息 + private static final String TAG = "Contact"; + + // 定义一个字符串CALLER_ID_SELECTION,用于构建数据库查询条件 + // 该条件用于查找电话号码与指定号码匹配的联系人,并且电话号码的类型为Phone.CONTENT_ITEM_TYPE + // 使用PHONE_NUMBERS_EQUAL函数来比较电话号码,以支持不同格式的号码匹配 + private static final String CALLER_ID_SELECTION = "PHONE_NUMBERS_EQUAL(" + Phone.NUMBER + + ",?) AND " + Phone.MIMETYPE + "='" + Phone.CONTENT_ITEM_TYPE + "'" + + " AND " + Phone.RAW_CONTACT_ID + " IN " + + "(SELECT raw_contact_id " + + " FROM phone_lookup" + + " WHERE min_match = '+')"; + + /** + * 根据电话号码获取联系人名称的方法 + * @param context 上下文对象,用于访问应用程序环境 + * @param phoneNumber 需要查询的电话号码 + * @return 对应的联系人名称,如果未找到则返回null + */ + public static String getContact(Context context, String phoneNumber) { + // 如果sContactCache为空,则初始化一个新的HashMap实例 + if(sContactCache == null) { + sContactCache = new HashMap(); + } + + // 检查缓存中是否存在指定电话号码对应的联系人名称 + // 如果存在,则直接从缓存中返回名称,避免重复查询数据库 + if(sContactCache.containsKey(phoneNumber)) { + return sContactCache.get(phoneNumber); + } + + // 使用PhoneNumberUtils.toCallerIDMinMatch方法将电话号码转换为最小匹配格式 + // 然后替换CALLER_ID_SELECTION中的'+'为最小匹配格式的号码 + // 最终构建出完整的查询条件 + String selection = CALLER_ID_SELECTION.replace("+", + PhoneNumberUtils.toCallerIDMinMatch(phoneNumber)); + + // 通过context.getContentResolver().query方法查询数据库 + // 查询条件为selection,查询参数为phoneNumber + // 查询结果只包含一个字段Phone.DISPLAY_NAME,即联系人的显示名称 + Cursor cursor = context.getContentResolver().query( + Phone.CONTENT_URI, // 联系人数据的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) { + // 如果获取结果时发生IndexOutOfBoundsException异常,记录错误日志 + Log.e(TAG, " Cursor get string error " + e.toString()); + return null; // 返回null表示查询失败 + } finally { + // 无论查询成功还是失败,都需要关闭Cursor对象,释放资源 + cursor.close(); + } + } else { + // 如果查询结果为空或没有匹配的记录,记录日志信息并返回null + Log.d(TAG, "No contact matched with number:" + phoneNumber); + return null; + } + } + } \ No newline at end of file