我有以下代码,它使用一个URL将图像加载到我的布局ID为image
的带有滑动的ImageView中:
String imageURL = "https://example.com/image.jpg"
Glide.with(mContext)
.load(imageURL)
.apply(requestOptions)
.into(imageTypeViewHolder.image);
但是,我的布局文件还有另一个名为image2
的ImageView。到目前为止,我通过以下方式实现了这一目标:
String imageURL = "https://example.com/image.jpg"
String image2URL = "https://example.com/image2.jpg"
Glide.with(mContext)
.load(imageURL)
.apply(requestOptions)
.into(imageTypeViewHolder.image);
Glide.with(mContext)
.load(image2URL)
.apply(requestOptions)
.into(imageTypeViewHolder.image2);
这是正确的方法,还是可以将其简化为单个Glide.with?