아주 잘만든 이미지 다운로드 라이브러리이다~! Image download가 필요한 서비스를 개발할때? 유용할듯하다~!
간단 사용방법
1. Application에서 다음과 같은 함수를 만든다.~~! 그리고 호출~!
private void initImageLoader () {
final DisplayImageOptions option = new DisplayImageOptions.Builder()
.showImageOnLoading(R.drawable.ic_launcher)
.cacheInMemory(true)
.resetViewBeforeLoading(false)
.build();
final ImageLoaderConfiguration configuration = new ImageLoaderConfiguration.Builder(this.getApplicationContext())
.defaultDisplayImageOptions(option)
.build();
ImageLoader.getInstance().init(configuration);
}//end initImageLoader Method
2. 이미지 다운로드~!
ImageLoader.getInstance().displayImage(uri, imageView);
'Development > Android' 카테고리의 다른 글
[Android] 키보드 감추기~! (0) | 2014.01.06 |
---|---|
[Android] 위도 경도 값으로 주소값 추출하기~! (0) | 2014.01.01 |
[Android] Spring 라이브러리로 Multipart-form data 전송하기~! (0) | 2013.12.29 |
[Android] 갤러리에서 Image가져오기~! (1) | 2013.12.29 |
[Android] MissingTranslation 오류로 인한 실행이 안될때~! (0) | 2013.12.19 |