Android/Kotlin

Glide

lipnus 2018. 11. 24. 00:25
반응형




*Glide Document: https://bumptech.github.io/glide/






버전이 올라가면서 예전에 쓰던거에서 사용법이 약간 바뀌었다.

implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'

implementation 'jp.wasabeef:glide-transformations:4.0.1'

(세번째꺼는 Glide확장판? 같은 거)





1.Placeholder

Glide.with(this)
.load("경로")
.apply(RequestOptions().placeholder(R.drawable.s1))
.into(main_iv)



2.CenterCrop

Glide.with(this)
.load("경로")
.apply(centerCropTransform())
.into(main_iv)



3.Transcription

Glide.with(this)
.load("경로")
.transition(withCrossFade())
.into(main_iv)


반응형

'Android > Kotlin' 카테고리의 다른 글

[Kotlin] HashMap  (0) 2018.11.24
[Kotlin] Retrofit  (0) 2018.11.24
Button  (0) 2018.11.20
Class - nested  (0) 2018.11.20
Class - 데이터클래스  (0) 2018.11.20