what is .thumbnail(0.5f) method and what is 0.5f in this method and why we need to use it in below code please explain.
Glide.with(context).load(dataList.get(position).getArtworkUrl30())
.thumbnail(0.5f)
.crossFade()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(holder.img);