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 | 29 | 30 | 31 |
Tags
- Program type already present
- Android Apk
- android error
- release Apk
- tomcat
- Android Apk 이름
- apache gzip
- Android Apk 이름 변경
- MySQL
- DataTable
- spring
- Eclipse
- css
- Kotlin
- Java
- java error
- FLUTTER
- Firebase
- Exception
- 안드로이드
- html
- android fragment
- R프로그래밍
- jQuery
- error
- JavaScript
- fragment
- release unsigned
- Android
- CSS사용법
Archives
- Today
- Total
목록android glide (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