ADD file via upload

p89qj3nzs 4 months ago
parent 24bc3724d6
commit 5717fda731

@ -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<String, String> 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<String, String>();
}
// 检查缓存中是否存在指定电话号码对应的联系人名称
// 如果存在,则直接从缓存中返回名称,避免重复查询数据库
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;
}
}
}
Loading…
Cancel
Save