I take photoUri contact by code
Cursor people = getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);
String photoUri = people.getString(people.getColumnIndex(ContactsContract.Contacts.PHOTO_URI));
and put it into Image by code
Uri uri = Uri.parse(photoUri);
img.setImageURI(uri);
but don't have any image display.
Could any body solve my problem.