Kotlin Android Studio - 从newsapi加载缩略图

业无高卑志当坚,男儿有求安得闲?这篇文章主要讲述Kotlin Android Studio - 从newsapi加载缩略图相关的知识,希望能为你提供帮助。
【Kotlin Android Studio - 从newsapi加载缩略图】我正在使用这个news api将json数据拉入我的应用程序并在我的articlerecycler适配器类中呈现它。从api有一个json值urlToImage,它包含我需要渲染的缩略图。目前我有一份20个左右的文章工作清单,显示作者,标题,描述等。
显示缩略图的最佳方法是什么?使用ImageView小部件是处理这个问题的最佳方法吗?
例如,

< ImageView android:id="@+id/thumbnailIv" android:layout_width="94dp" android:layout_height="93dp" android:layout_weight="1" android:contentDescription="@string/urlToImage" android:scaleType="fitCenter" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:srcCompat="@drawable/placeholder_image" />

我通过其他帖子发现毕加索是延迟加载图像的好方法,特别是缩略图。
// load the image with Picasso Picasso.get() .load("") // load the image .into(thumbnailIv) // select the ImageVi}

答案是的使用ImageView并使用像Glidepicasso这样的库将图像从网址加载到ImageView
GlideApp.with(context) .load(url) .diskCacheStrategy(DiskCacheStrategy.DATA) //optional .placeholder(R.drawable.default_image)//optional .error(R.drawable.default_image)//optional .into(holder.imageNews);

使用ImageView,您可以控制ScaleType另一个有用的属性是android:adjustViewBounds="true",它将保持纵横比。如果使用线性/相对并将图像设置为背景,则无法控制这些属性

    推荐阅读