ZhengLiJie_branch
zlj 4 months ago
parent 8189a544de
commit 56914e1fbe

@ -24,50 +24,75 @@ import android.telephony.PhoneNumberUtils;
import android.util.Log; import android.util.Log;
import java.util.HashMap; import java.util.HashMap;
/**
*
*
*/
public class Contact { public class Contact {
private static HashMap<String, String> sContactCache; // 静态缓存,用于存储电话号码与联系人姓名的映射关系
private static final String TAG = "Contact"; private static HashMap<String, String> sContactCache;
// 日志标签,用于调试和错误日志输出
private static final String TAG = "Contact";
// SQL 查询条件字符串,用于匹配指定电话号码的联系人信息
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 = '+')";
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 " * @param context
+ " FROM phone_lookup" * @param phoneNumber
+ " WHERE min_match = '+')"; * @return null
*/
public static String getContact(Context context, String phoneNumber) {
// 如果缓存为空,初始化缓存
if (sContactCache == null) {
sContactCache = new HashMap<String, String>();
}
public static String getContact(Context context, String phoneNumber) { // 检查缓存中是否已存在该电话号码的联系人信息
if(sContactCache == null) { if (sContactCache.containsKey(phoneNumber)) {
sContactCache = new HashMap<String, String>(); return sContactCache.get(phoneNumber);
} }
if(sContactCache.containsKey(phoneNumber)) { // 构造查询条件,将电话号码替换为匹配格式
return sContactCache.get(phoneNumber); String selection = CALLER_ID_SELECTION.replace("+",
} PhoneNumberUtils.toCallerIDMinMatch(phoneNumber));
String selection = CALLER_ID_SELECTION.replace("+", // 执行数据库查询,查询与电话号码匹配的联系人姓名
PhoneNumberUtils.toCallerIDMinMatch(phoneNumber)); Cursor cursor = context.getContentResolver().query(
Cursor cursor = context.getContentResolver().query( Data.CONTENT_URI,
Data.CONTENT_URI, new String[]{Phone.DISPLAY_NAME},
new String [] { Phone.DISPLAY_NAME }, selection,
selection, new String[]{phoneNumber},
new String[] { phoneNumber }, null);
null);
if (cursor != null && cursor.moveToFirst()) { // 如果查询结果不为空且有数据
try { if (cursor != null && cursor.moveToFirst()) {
String name = cursor.getString(0); try {
sContactCache.put(phoneNumber, name); // 获取查询结果中的联系人姓名
return name; String name = cursor.getString(0);
} catch (IndexOutOfBoundsException e) { // 将电话号码与联系人姓名存入缓存
Log.e(TAG, " Cursor get string error " + e.toString()); sContactCache.put(phoneNumber, name);
return null; return name;
} finally { } catch (IndexOutOfBoundsException e) {
cursor.close(); // 如果发生索引越界异常,记录错误日志并返回 null
} Log.e(TAG, "Cursor get string error " + e.toString());
} else { return null;
Log.d(TAG, "No contact matched with number:" + phoneNumber); } finally {
return null; // 关闭游标以释放资源
} cursor.close();
} }
} } else {
// 如果没有找到匹配的联系人,记录调试日志并返回 null
Log.d(TAG, "No contact matched with number:" + phoneNumber);
return null;
}
}
}
Loading…
Cancel
Save