Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- tomcat
- release Apk
- Java
- R프로그래밍
- jQuery
- 안드로이드
- Firebase
- java error
- CSS사용법
- Android Apk 이름 변경
- html
- fragment
- JavaScript
- Android
- Exception
- apache gzip
- DataTable
- error
- css
- MySQL
- Android Apk
- release unsigned
- android error
- Kotlin
- Eclipse
- Android Apk 이름
- android fragment
- spring
- Program type already present
- FLUTTER
Archives
- Today
- Total
목록Android Glide Image (1)
selfstarter
Android Glide Library사용법
build.gradle 에서 dependencies dependencies { implementation 'com.github.bumptech.glide:glide:4.11.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' } 2. xml에 imageView 추가 3. Glide 사용. load에 image url이나 local image path를 넣고 error에는 error 일 때 img url을 넣는다. into함수 안에는 image를 넣을 ImageView 객체를 param으로 넘겨준다 val img : ImageView = findViewById(R.id.img); Glide.with(this).load("https://cd..
App/Android
2020. 7. 31. 17:51