[Android] Glide 활용해서 TextView 에 이미지 넣기
Glide 사용하고 TextView 에 이미지 넣기
Glide.with(Activity.this)
.load(Path)
.bitmapTransform(new CropCircleTransformation(Activity.this))
.diskCacheStrategy(DiskCacheStrategy.NONE)
.skipMemoryCache(true)
.error(null)
.into(new SimpleTarget<GlideDrawable>() {
@Override
public void onResourceReady(GlideDrawable glideDrawable, GlideAnimation<? super GlideDrawable> glideAnimation) {
TextView.setText("");
TextView.setBackground(glideDrawable.getCurrent());
}
});
https://github.com/bumptech/glide/wiki/Custom-targets
https://github.com/bumptech/glide/issues/1083
반응형
'Dev > Android' 카테고리의 다른 글
BroadcastReceiver - LocalBroadcastReceiver / 브로드캐스트 (0) | 2017.10.26 |
---|---|
Android BLE(Bluetooth Low Energy) 참고 (0) | 2017.10.11 |
안드로이드 Context 개념 - 링크 (0) | 2017.08.18 |
Android[에러관련] - Installation failed with message Invalid File (0) | 2017.06.28 |
Android - SharedPreferences / Developing Android App (0) | 2017.03.10 |