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 |
Tags
- Firebase
- JavaScript
- java error
- Kotlin
- spring
- jQuery
- DataTable
- R프로그래밍
- CSS사용법
- release unsigned
- release Apk
- apache gzip
- fragment
- Android
- android error
- Eclipse
- Exception
- html
- error
- Android Apk
- Android Apk 이름
- FLUTTER
- MySQL
- tomcat
- css
- 안드로이드
- Program type already present
- Java
- Android Apk 이름 변경
- android fragment
Archives
- Today
- Total
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 추가
<ImageView
android:id="@+id/img"
android:layout_width="200dp"
android:layout_height="200dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginTop="50dp"
/>
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://cdn.pixabay.com/photo/2017/01/13/01/22/ok-1976099_960_720.png").error(R.drawable.ic_launcher_background).into(img)
'App > Android' 카테고리의 다른 글
An enum switch case label must be the unqualified name of an enumeration constant (0) | 2020.08.09 |
---|---|
Lambda expressions are not supported at language level '7' (0) | 2020.08.07 |
Android Camera2 (0) | 2020.07.25 |
Android image 저장 (0) | 2020.07.22 |
갤러리에 이미지 저장 (0) | 2020.07.22 |
Comments