您可以使用Glide来下载drawable资源,以下是一个示例代码:
build.gradle
文件中添加了Glide的依赖项:implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
ImageView imageView = findViewById(R.id.imageView);
Glide.with(this)
.load(R.drawable.your_drawable_resource)
.into(imageView);
请确保将R.drawable.your_drawable_resource
替换为您想要加载的实际drawable资源的ID。
这将使用Glide加载和显示指定的drawable资源到ImageView中。
此外,您还可以使用其他Glide的功能,例如设置占位符、错误图像、缩放等等。您可以根据需要在Glide的文档中查找更多信息:https://bumptech.github.io/glide/