1

我正在尝试根据 android 1.6 上的电话号码查询联系信息。这是我尝试过的代码。但是我的光标中的计数等于 0。

    String selection = "PHONE_NUMBERS_EQUAL(" + People.Phones.NUMBER + " , "   + phoneNumber + ")";
    Cursor cursor = mContext.getContentResolver().query(People.CONTENT_URI,
            new String[] {People._ID, People.NAME, People.Phones.NUMBER},
            selection, null, null);

你知道为什么它不工作吗?

谢谢你。

4

2 回答 2

4

您可以指定 URI 并使用查询直接通过电话号码获取联系信息。

Uri contactUri = Uri.withAppendedPath(Contacts.Phones.CONTENT_FILTER_URL, Uri.encode(phoneNumber));

Cursor cursor = mContext.getContentResolver().query(contactUri, null, null, null, null);

上面代码返回的光标应该包含你正在寻找的联系人,你可以得到你需要的信息......

if(cursor.moveToFirst()){
    int personIDIndex = cursor.getColumnIndex(Contacts.Phones.PERSON_ID);
    //etc
}
于 2010-07-14T19:40:48.720 回答
1

电话号码存储在自己的表中,需要单独查询。要查询电话号码表,请使用 SDK 变量 Contacts.Phones.CONTENT_URI 中存储的 URI。使用 WHERE 条件获取指定联系人的电话号码。

if (Integer.parseInt(cur.getString(
        cur.getColumnIndex(People.PRIMARY_PHONE_ID))) > 0) {
    Cursor pCur = cr.query(
            Contacts.Phones.CONTENT_URI, 
            null, 
            Contacts.Phones.PERSON_ID +" = ?", 
            new String[]{id}, null);
    int i=0;
    int pCount = pCur.getCount();
    String[] phoneNum = new String[pCount];
    String[] phoneType = new String[pCount];
    while (pCur.moveToNext()) {
        phoneNum[i] = pCur.getString(
                           pCur.getColumnIndex(Contacts.Phones.NUMBER));
        phoneType[i] = pCur.getString(
                           pCur.getColumnIndex(Contacts.Phones.TYPE));
        i++;
    } 
}

查询电话表并获取存储在 pCur 中的光标。由于 Android 联系人数据库可以为每个联系人存储多个电话号码,因此我们需要遍历返回的结果。除了返回电话号码之外,查询还返回了号码的类型(家庭、工作、手机等)。

另请阅读本教程关于使用 Android Contacts API For 1.6 and Before

于 2010-07-14T19:39:39.547 回答