[안드로이드] 주소록에 있는 사진 얻어오기
안드로이드 주소록에 있는 사진을 Bitmap 으로 얻어올 수 있는 방법입니다. 아래와 같은 함수를 이용하여 주소록에 있는 사진을 얻어올 수 있습니다.[code java] public static Bitmap loadContactPhoto(ContentResolver cr, long id) { Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, id); InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(cr, uri); if (input == null) { return null; } return더 보기[안드로이드] 주소록에 있는 사진 얻어오기[…]