内容解析器从多个数字查询PHOTO_URI

时间:2016-02-09 11:11:18

标签: android android-contacts android-contentresolver

我想创建一个单独的查询,返回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。我可以这样做吗?

0 个答案:

没有答案