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
- plugin
- GIT
- Java
- es6
- MSSQL
- Android
- R
- mybatis
- table
- 보조정렬
- Eclipse
- hadoop
- 공정능력
- vaadin
- SQL
- mapreduce
- Spring
- tomcat
- window
- IntelliJ
- xPlatform
- JavaScript
- Express
- Kotlin
- SPC
- SSL
- react
- NPM
- Python
- Sqoop
Archives
- Today
- Total
DBILITY
android glide image load 본문
728x90
반응형
libs.versions.toml
[versions]
glide = "4.16.0"
glidecompiler = "4.16.0"
[libraries]
glide = { group = "com.github.bumptech.glide", name = "glide", version.ref = "glide" }
glidecompiler = { group = "com.github.bumptech.glide", name = "compiler", version.ref = "glidecompiler" }
build.gradle
dependencies {
implementation libs.glide
annotationProcessor libs.glidecompiler
}
GlideModule.java
import com.bumptech.glide.module.AppGlideModule;
@com.bumptech.glide.annotation.GlideModule
public class GlideModule extends AppGlideModule {
public GlideModule() {
super();
}
}
Activity.java
Glide.with(this).load(uri).diskCacheStrategy(DiskCacheStrategy.ALL).
timeout(10000).into(popupLayoutBinding.imageView);
728x90
'android > java' 카테고리의 다른 글
java 난수 생성 (0) | 2024.12.10 |
---|---|
android ViewPager2 (0) | 2024.11.19 |
android java ScrollView scroll (0) | 2024.11.18 |
android java interface lambda vs anonymous reference 'this' meaning (0) | 2024.11.14 |
java @SuppressWarnings (0) | 2024.05.23 |
Comments