diff --git a/README.md b/README.md index e949d82..865dc63 100644 --- a/README.md +++ b/README.md @@ -1,111 +1,3 @@ -Material Ripple Layout -=============== +# Material Ripple Layout (with dynamic hover duration) -Ripple effect wrapper for Android Views - -![Demo Image][1] - -Including in your project -------------------------- - -```groovy -compile 'com.balysv:material-ripple:1.0.2' -``` - -Check for latest version number on the widget below or visit [Releases](https://github.com/balysv/material-ripple/releases) - -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.balysv/material-ripple/badge.svg?style=flat)](http://mvnrepository.com/artifact/com.balysv/material-ripple) - -Usage ------ - -Use static initializer on your `View` (see `xml` attributes below for customization) - -```java -MaterialRippleLayout.on(view) - .rippleColor(Color.BLACK) - .create(); -``` - -Or wrap your `View` with `MaterialRippleLayout` in your layout file: - -```xml - - -