Package coil
Types
Image Loader Factory
Link copied to clipboard
fun interface ImageLoaderFactory
Content copied to clipboard
A factory that creates new ImageLoader instances.
Functions
load
Link copied to clipboard
inline fun ImageView.load(bitmap: Bitmap?, imageLoader: ImageLoader = context.imageLoader, builder: ImageRequest.Builder.() -> Unit = {}): Disposable
Content copied to clipboard
inline fun ImageView.load(drawable: Drawable?, imageLoader: ImageLoader = context.imageLoader, builder: ImageRequest.Builder.() -> Unit = {}): Disposable
Content copied to clipboard
inline fun ImageView.load(uri: Uri?, imageLoader: ImageLoader = context.imageLoader, builder: ImageRequest.Builder.() -> Unit = {}): Disposable
Content copied to clipboard
inline fun ImageView.load(file: File?, imageLoader: ImageLoader = context.imageLoader, builder: ImageRequest.Builder.() -> Unit = {}): Disposable
Content copied to clipboard
inline fun ImageView.load(@DrawableRes drawableResId: Int, imageLoader: ImageLoader = context.imageLoader, builder: ImageRequest.Builder.() -> Unit = {}): Disposable
Content copied to clipboard
Properties
imageLoader
Link copied to clipboard
Get the singleton ImageLoader. This is an alias for Coil.imageLoader.