Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.04 KB

README.md

File metadata and controls

53 lines (40 loc) · 1.04 KB

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