개발/안드로이드

Android - Image Url로 화면에 표시

웅'jk 2023. 2. 7. 15:31

Glide 를 이용해 url 주소로 이미지를 표시해봅시다.

 

1. 인터넷 권한 및 implement

// manifest 에서
 <uses-permission android:name="android.permission.INTERNET" />
 
 // build.gradle 에서
implementation 'com.github.bumptech.glide:glide:4.14.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2'

 

2. JAVA code

Glide.with("표시할 액티비티").load("Url 주소").into("이미지뷰객체");