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
- Fork it ( https://github.com/cesarferreira/catkit/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request