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
- tomcat
- Java
- IntelliJ
- es6
- mapreduce
- vaadin
- 공정능력
- R
- Kotlin
- Express
- mybatis
- 보조정렬
- table
- Eclipse
- SPC
- SSL
- GIT
- Spring
- react
- Android
- hadoop
- window
- SQL
- plugin
- JavaScript
- Python
- NPM
- MSSQL
- xPlatform
- Sqoop
Archives
- Today
- Total
DBILITY
android glide image load 본문
반응형
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);
반응형
'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