*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.PlaceholderGlide.with(this) .load("경로") .apply(RequestOptions().placeholder(R.drawable.s1)) .into(main_iv) 2.Center..