我有一个custom ImageView
来自FrameLayout
的范围我如何从Url
加载图片到该视图。
感谢。
答案 0 :(得分:0)
您可以使用Glide资料库
repositories {
mavenCentral()
google()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.6.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
}
GlideApp.with(this).load("YOUR_URL").into(imageView);