1
我用這個示例代碼:讀取圖片來源於聯繫 - Android電子
public InputStream openDisplayPhoto(long contactId) {
Uri contactUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
Uri displayPhotoUri = Uri.withAppendedPath(contactUri, Contacts.Photo.DISPLAY_PHOTO);
try {
AssetFileDescriptor fd =
getContentResolver().openAssetFileDescriptor(displayPhotoUri, "r");
return fd.createInputStream();
} catch (IOException e) {
return null;
}
}
我無法顯示此放大。我如何使用它?
太好了!有用!但我得到的照片不是最大的照片?我該怎麼做? – user3253955
將您的ImageView尺寸設置爲100X100,然後檢查它。 – Naveen
我該如何設置它? – user3253955