ugurcany / ImageLoader

Mylivn mobile assignment

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ImageLoader

This project contains the implementation of an image loader library (imageloader module) and sample app (app module) that shows how to use this library.

No third-party library is used in this project.

How to use ImageLoader:

ImageLoader.of(this) // this = a Context instance
    .into(imageView)
    .isCircular(true) // OPTIONAL
    .enableCaching(10) // CACHE SIZE IN MB - OPTIONAL
    .loadingPlaceholder(R.drawable.placeholder_loading) // OPTIONAL
    .errorPlaceholder(R.drawable.placeholder_error) // OPTIONAL
    .callback(new Callback() { // OPTIONAL
        // ...
    })
    .load(imageUrl);

About

Mylivn mobile assignment


Languages

Language:Java 100.0%