├── .gitignore ├── LICENSE ├── README.md ├── example.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── proguard-rules.pro ├── res │ └── values │ │ ├── attrs.xml │ │ └── strings.xml └── src │ └── ru │ └── katso │ └── livebutton │ └── LiveButton.java ├── maven_push.gradle ├── sample ├── .gitignore ├── AndroidManifest.xml ├── build.gradle ├── proguard-rules.pro ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable-xxxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── ru │ └── katso │ └── livebutton │ └── sample │ └── MainActivity.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | *.iml 4 | /local.properties 5 | /build 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/README.md -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/example.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/library/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/library/res/values/attrs.xml -------------------------------------------------------------------------------- /library/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/library/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/ru/katso/livebutton/LiveButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/library/src/ru/katso/livebutton/LiveButton.java -------------------------------------------------------------------------------- /maven_push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/maven_push.gradle -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.iml 3 | -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/layout/main.xml -------------------------------------------------------------------------------- /sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/values/strings.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/ru/katso/livebutton/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dakatso/LiveButton/HEAD/sample/src/ru/katso/livebutton/sample/MainActivity.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':sample', ':library' 2 | --------------------------------------------------------------------------------