图像加载到自定义视图

时间:2018-04-04 05:02:05

标签: android android-custom-view image-loading

我有一个custom ImageView来自FrameLayout的范围我如何从Url 加载图片到该视图。

感谢。

1 个答案:

答案 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);