사이즈 결정하기
// !------ OutofMemory Exception Solution
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 8;
// Solution End ------- !
Bitmap image = BitmapFactory.decodeFile(list.get(position)[2],options);
imageView.setImageBitmap(image);
참고
반응형
'Android Story' 카테고리의 다른 글
[ Android ] MediaPlayer & VideoView (0) | 2016.01.26 |
---|---|
[ Android ] #Socket #Image # Transfer (0) | 2016.01.20 |
[ Android ] android studio Github pull (0) | 2016.01.20 |
[ Android ] Github 연동2 - Push (0) | 2016.01.20 |
[ Android ] Git 연동 (0) | 2016.01.20 |
[ Android ] Bitmap 파일패스로 열기 (0) | 2016.01.19 |
[ Android ] Socket 통신 - 이미지 전송 (0) | 2016.01.19 |
[ Android ] 객체 직렬화 ObjectInputStream / ObjectOutputStream (0) | 2016.01.19 |