其他
一起来看看Android官推Kotlin-First的图片加载库
/ 今日科技快讯 /
近日,有网友发现,华为部分手机不再标配手机充电器和数据线,而是为消费者提供两种版本选择。其中不含充电器的版本比普通套装少200元。随后,相关话题引起网友热议。针对这一问题,华为商城进行了回应。华为商城表示,为满足不同消费者需求,华为手机自16日开始推出不含充电器和数据线的新版本,具体的产品和型号以及开售时间以实际销售情况为准。
/ 作者简介 /
大家周一好,随着天气的回暖,五一小长假更近了呢!新的一周继续加油!
本篇文章来自developerHaoz同学的投稿,和大家分享了图片加载库Coil的相关内容,相信会对大家有所帮助!同时也感谢作者贡献的精彩文章!
developerHaoz的博客地址:
https://juejin.cn/user/3350967170393607
/ 前言 /
Coil 是一个非常年轻的图片加载库,在 2020 年 10 月 22 日才发布了 1.0.0 版本,但却受到了 Android 官方的推广,在 Android Developers Backstage 这个博客中专门聊过一期。推广的原因比较简单:一方面是这个库确实做得很好,另一方面是这个库完全是用 Kotlin 写的,而且运用了大量 Kotlin 的特性,尤其是协程。所以 Google 嘴上说着不会放弃 Java,但实际上咱们都懂的。
Coil 名字的由来:取 Coroutine Image Loader 首字母得来,可以看出通过 Kotlin 协程来进行图片加载,特点如下:
更快:Coil 在性能上有很多优化,包括内存缓存和磁盘缓存、把缩略图保存在内存中、通过 BitmapPool 循环利用 Bitmap、自动暂停和取消网络请求等 更轻量级:Coil 只有 2000 个方法,跟 Picasso 的方法数差不多,相比 Glide 和 Fresco 要轻量非常多 更容易使用:Coil 的 API 充分利用 Kotlin 的新特性,而且还有丰富的拓展函数,简化和减少了很多样板代码 更流行:Coil 通过 Kotlin 来开发,并且使用包含 Coroutines、okhttp、okio 和 AndroidX Lifecycles 在内的非常多流行的开源库
imageView.load("https://www.example.com/image.jpg")
// Resource
imageView.load(R.drawable.image)
// File
imageView.load(File("/path/to/image.jpg"))
crossfade(true)
placeholder(R.drawable.image)
transformations(CircleCropTransformation())
}
.availableMemoryPercentage(0.25)
.crossfade(true)
.build()
private val drawable = ColorDrawable(Color.BLACK)
override fun enqueue(request: ImageRequest): Disposable {
request.target?.onStart(drawable)
request.target?.onSuccess(drawable)
return disposable
}
override suspend fun execute(request: ImageRequest): ImageResult {
return SuccessResult(
drawable = drawable, request = request,
metadata = ImageResult.Metadata(
memoryCacheKey = MemoryCache.Key(""),
isSampled = false,
dataSource = DataSource.MEMORY_CACHE,
isPlaceholderMemoryCacheKeyPresent = false
)
)
}
}
.data("https://www.example.com/image.jpg")
.target { drawable ->
// Handle the result.
}
.build()
context.imageLoader.enqueue(request)
/**
* 如果图片加载请求已经完成或者取消,则返回 true
*/
val isDisposed: Boolean
/**
* 取消正在进行的图片加载请求以及释放相关的资源,而且该方法是幂等的
*/
fun dispose()
/**
* 非阻塞式地等待任务结束
*/
@ExperimentalCoilApi
suspend fun await()
}
fun key(): String
suspend fun transform(pool: BitmapPool, input: Bitmap, size: Size): Bitmap
}
imageView.load("https://www.example.com/image.jpg") {
transformations(CircleCropTransformation())
}
private val context: Context,
private val cache: LruCache<String, Drawable>
) : Interceptor {
override suspend fun intercept(chain: Interceptor.Chain): ImageResult {
val value = cache.get(chain.request.data.toString())
if (value != null) {
return SuccessResult(
drawable = value.bitmap.toDrawable(context),
request = chain.request,
metadata = TODO()
)
}
return chain.proceed(chain.request)
}
}
imageView.load("https://www.example.com/image.jpg")
override fun map(data: String) = data.toUri()
}
override fun handles(data: Uri) = data.scheme == "http" || data.scheme == "https"
override fun key(data: Uri) = data.toString()
override fun Uri.toHttpUrl(): HttpUrl = HttpUrl.get(toString())
}
.componentRegistry {
if (SDK_INT >= 28) {
add(ImageDecoderDecoder())
} else {
add(GifDecoder())
}
}
.build()
.componentRegistry {
add(SvgDecoder(context))
}
.build()
.componentRegistry {
add(VideoFrameFileFetcher())
add(VideoFrameUriFetcher())
}
.build()