Can you please tell me how can I get the photo data if I have a list of photo_ids?
I try this:
cursor = mResolver.query(Contacts.Photos.CONTENT_URI, null, "_id IN (?)" , new String[] {"458"}, null);
But the cursor return null.
Any idea How to troubleshoot?
Thank you.