我想创建一个单独的查询,返回ContactsContract.PhoneLookup.PHOTO_URI多个数字
现在我用这个:
Cursor contactLookupCursor = context.getContentResolver().query(Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_FILTER_URI, UriContactNumber),
new String[]{ContactsContract.PhoneLookup.PHOTO_URI}, null, null, null);
while (contactLookupCursor.moveToNext()) {
photoUri = contactLookupCursor.getString(contactLookupCursor.getColumnIndexOrThrow(ContactsContract.PhoneLookup.PHOTO_URI));
}
我想将更多数字传递给Uri.withAppendedPath。我可以这样做吗?