4

我将手机的通话记录查询到 ListView 中。因此,当用户长按某个项目时,会出现一个对话框,其中包含“查看联系人”等选项。为了能够查看联系人,意图需要联系人 ID。我的问题是我并不总是能看到正确的联系人。我点击彼得,然后彼得的联系表出现了。我点击莎拉,杰森的联系表出现了。

我一定是错误地使用了这段代码。请帮忙。

ContentResolver contentResolver = getContentResolver();

Uri uri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(phone));

Cursor cursor =  contentResolver.query(uri, new String[] {PhoneLookup.DISPLAY_NAME, PhoneLookup._ID}, null, null, null);

if(cursor!=null) {
      while(cursor.moveToNext())
      {
        String contactName = cursor.getString(cursor.getColumnIndexOrThrow(PhoneLookup.DISPLAY_NAME));
        contactid2 = cursor.getString(cursor.getColumnIndexOrThrow(PhoneLookup._ID));
        }
        cursor.close();
}

Intent intent_contacts = new Intent(Intent.ACTION_VIEW, Uri.parse("content://contacts/people/" + contactid2));
 startActivity(intent_contacts);

也许我需要的不是PhoneLookup._ID,而是其他一些ID。

我也在这里尝试了 Felipe 的回答,同样的情况。

编辑:

  • 在 HTC Desire HD (2.3.5) 上,我在 99% 的情况下都能找到正确的联系人。
  • 在 ZTE Blade (2.2) 上,我在 60% 的情况下都能得到正确的接触。
  • 在三星 Galaxy Ace (2.3.3) 上,我在 5% 的情况下获得了正确的联系人。

这到底是怎么回事???

4

2 回答 2

4

在深入研究主题后,我在 googlegroups 上找到了 sven 的帮助。问题是我使用了一个过时的意图。我阅读了开发者网站上的许多页面,我一定是不知何故错过了它。

我还发布了完整的代码。

contactid26 = null;

ContentResolver contentResolver = getContentResolver();

Uri uri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(phonenumintolist));

Cursor cursor =  
contentResolver.query(
    uri, 
    new String[] {PhoneLookup.DISPLAY_NAME, PhoneLookup._ID}, 
    null, 
    null, 
    null);

    if(cursor!=null) {
        while(cursor.moveToNext()){
            String contactName = cursor.getString(cursor.getColumnIndexOrThrow(PhoneLookup.DISPLAY_NAME));
            contactid26 = cursor.getString(cursor.getColumnIndexOrThrow(PhoneLookup._ID));

        }
        cursor.close();
    }
    if (contactid26 == null) {
        Toast.makeText(DetailedCallHistory.this, "No contact found associated with this number", Toast.LENGTH_SHORT).show();
    }
    else {
        Intent intent_contacts = new Intent(Intent.ACTION_VIEW, Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_URI, String.valueOf(contactid26)));
        //Intent intent_contacts = new Intent(Intent.ACTION_VIEW, Uri.parse("content://contacts/people/" + contactid26));
        startActivity(intent_contacts);
    }
于 2012-06-06T18:16:36.813 回答
1

在这种情况下,我将向您展示如何获取 ID 以及您输入并想要搜索的任何联系人号码的姓名,例如,如果您输入号码并想要搜索其姓名和 ID,则使用这段代码,它是 100% 工作的,如果你想进一步修改,那么你可以告诉我

         Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI,Uri.encode(phnno.getText().toString()));//phone no 
         String[] proj = new String[] 
           {///as we need only this colum from a table...
             Contacts.DISPLAY_NAME,
             Contacts._ID,
            };
         String id=null;
         String sortOrder1 = StructuredPostal.DISPLAY_NAME + " COLLATE LOCALIZED ASC";
         Cursor crsr = getContentResolver().query(lookupUri,proj, null, null, sortOrder1);
     while(crsr.moveToNext())
     {
         String name=crsr.getString(crsr.getColumnIndex(Contacts.DISPLAY_NAME));
          id = crsr.getString(crsr.getColumnIndex(Contacts._ID));
          Toast.makeText(this,"Name of this cntct is   : " +name +"\n id is : "+id ,Toast.LENGTH_SHORT).show();
     }
    crsr.close();
于 2012-10-13T23:22:14.233 回答