如何启动 android 中目录联系人的详细联系信息 activity

How to launch contact detail activity of directory contact in android

我正在尝试使用联系人 ID 启动目录联系人(某些组织联系人)的详细信息页面。对于本地联系人,它工作正常但不适用于组织联系人。

这是我的代码。 (name为联系人姓名,idstr为目录id)

lookupByName = ContactsContract.Contacts.CONTENT_FILTER_URI.buildUpon().appendEncodedPath(name)
                        .appendQueryParameter(ContactsContract.DIRECTORY_PARAM_KEY, idStr).build();


            mCursor = mContext.getContentResolver().query(lookupByName, new String[]{ContactsContract.PhoneLookup.DISPLAY_NAME, ContactsContract.PhoneLookup._ID}, null, null, null);


            if (mCursor.moveToFirst()) {
                idPhone = 
                Long.valueOf(mCursor.getString(
            mCursor.getColumnIndex(ContactsContract.PhoneLookup._ID)));        
           }
   Intent intent = new Intent(Intent.ACTION_VIEW);                    
   intent.setData(ContentUris.
       withAppendedId(ContactsContract.Contacts.CONTENT_URI, idPhone ));        
  startActivity(intent);

请帮帮我。

提前致谢。

这很棘手,但成功了 您需要获取联系人的 LOOKUP_KEY,从中构建一个 LookupUri,将 DIRECTORY_PARAM_KEY 附加到 LookupUri,然后将其放入意图的 setData

String name = "hello";
String directoryId = "5"

Uri uri = Contacts.CONTENT_FILTER_URI.buildUpon().appendPath(name).appendQueryParameter(ContactsContract.DIRECTORY_PARAM_KEY, directoryId).build();
String[] projection = new String[]{Contacts._ID, Contacts.DISPLAY_NAME, Contacts.LOOKUP_KEY};
Cursor cur = getContentResolver().query(uri, projection, null, null, null);
DatabaseUtils.dumpCursor(cur); // debug

// add some safety checks first obviously...
cur.moveToFirst();
String lookup = cur.getString(2);
Uri lookupUri = Contacts.getLookupUri(cur.getLong(0), lookup).buildUpon().appendQueryParameter(ContactsContract.DIRECTORY_PARAM_KEY, directoryId).build();

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(lookupUri);
startActivity(intent);