CatKit

General

Category
Free
Tag
Image Loaders
License
MIT License
Min SDK
16 (Android 4.1 Jelly Bean)
Registered
Jul 1, 2015
Favorites
4
Link
https://github.com/cesarferreira/CatKit
See also
Dali
BlurImageView
Shutterbug
Parrot
Pearl

Additional

Language
Java
Version
0.3.0 (Jun 30, 2015)
Created
Jun 29, 2015
Updated
Nov 17, 2015 (Retired)
Owner
César Ferreira (cesarferreira)
Contributors
César Ferreira (cesarferreira)
Tobias Preuss (johnjohndoe)
David Lee (dvdrlee)
3
Activity
Badge
Generate
Download
Source code

Advertisement

CatKit

Android kit for cat placeholders

Usage

With Density-independent Pixels:

CatKit.with(context)
        .dp(200, 200)
        .into(targetImageView);

With Pixels:

CatKit.with(context)
        .px(500, 300)
        .into(targetImageView);

Memory Policy:

CatKit.with(context)
        .dp(200, 200)
        .memoryPolicy(MemoryPolicy.NO_CACHE)
        .into(targetImageView);

Install

Add the dependency to your build.gradle

dependencies {
  compile 'com.cesarferreira.catkit:catkit:0.3.0'
}

Contributing

  1. Fork it ( https://github.com/cesarferreira/catkit/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request