在我的應用程序中,我從URL下載圖像並通過Glide將其設置爲ImageView,但是,我試圖刪除一些不必要的佈局,因此可以使用Glide下載圖像並將其設置爲TextView ?是否可以使用Glide下載圖像以加載到TextView中?
try {
Glide.with(holder.logo.getContext())
.load(standingObjectItems.get(position).getImgId()).diskCacheStrategy(DiskCacheStrategy.ALL)
.error(R.mipmap.ic_launcher)
.placeholder(R.mipmap.ic_launcher)
.into(holder.logo);
} catch (IllegalArgumentException | IndexOutOfBoundsException e) {
e.printStackTrace();
}
你會如何設置'Bitmap'的'ImageView'? – Emmanuel
你可以做到。 –
@tinysunlight怎麼樣? – RedEagle