├── .gitignore ├── DetailedDoc.md ├── Readme.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── razir │ │ └── progressexample │ │ ├── DrawableButtonsActivity.kt │ │ ├── MainActivity.kt │ │ ├── ProgressButtonsActivity.kt │ │ ├── RecyclerViewActivity.kt │ │ └── java │ │ ├── DrawableButtonsActivity.java │ │ ├── ProgressButtonsActivity.java │ │ └── RecyclerViewActivity.java │ └── res │ ├── animator │ └── check_animation.xml │ ├── color │ └── stateful_text_color.xml │ ├── drawable-v21 │ └── animated_check.xml │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── check_mark.xml │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_drawable_buttons.xml │ ├── activity_main.xml │ ├── activity_progress_buttons.xml │ ├── activity_rv.xml │ └── item_button.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gif ├── animated_drawable.gif ├── mixed.gif ├── progress_center.gif ├── progress_default.gif └── progress_styled.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── progressbutton ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── github │ └── razir │ └── progressbutton │ ├── AllCapsSpannedTransformationMethod.kt │ ├── ButtonTextAnimatorExtensions.kt │ ├── DrawableButton.kt │ ├── DrawableButtonExtensions.kt │ ├── DrawableButtonUtils.kt │ ├── DrawableParams.kt │ ├── DrawableSpan.kt │ ├── ProgressButtonHolder.kt │ ├── ProgressButtonUtils.kt │ ├── ProgressParams.kt │ └── TextChangeAnimatorParams.kt └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/.gitignore -------------------------------------------------------------------------------- /DetailedDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/DetailedDoc.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/Readme.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/razir/progressexample/DrawableButtonsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/java/com/github/razir/progressexample/DrawableButtonsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/razir/progressexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/java/com/github/razir/progressexample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/razir/progressexample/ProgressButtonsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/java/com/github/razir/progressexample/ProgressButtonsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/razir/progressexample/RecyclerViewActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/java/com/github/razir/progressexample/RecyclerViewActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/razir/progressexample/java/DrawableButtonsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/java/com/github/razir/progressexample/java/DrawableButtonsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/razir/progressexample/java/ProgressButtonsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/java/com/github/razir/progressexample/java/ProgressButtonsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/razir/progressexample/java/RecyclerViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/java/com/github/razir/progressexample/java/RecyclerViewActivity.java -------------------------------------------------------------------------------- /app/src/main/res/animator/check_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/animator/check_animation.xml -------------------------------------------------------------------------------- /app/src/main/res/color/stateful_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/color/stateful_text_color.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/animated_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/drawable-v21/animated_check.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/check_mark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/drawable/check_mark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_drawable_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/layout/activity_drawable_buttons.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_progress_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/layout/activity_progress_buttons.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_rv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/layout/activity_rv.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/layout/item_button.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gif/animated_drawable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gif/animated_drawable.gif -------------------------------------------------------------------------------- /gif/mixed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gif/mixed.gif -------------------------------------------------------------------------------- /gif/progress_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gif/progress_center.gif -------------------------------------------------------------------------------- /gif/progress_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gif/progress_default.gif -------------------------------------------------------------------------------- /gif/progress_styled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gif/progress_styled.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/gradlew.bat -------------------------------------------------------------------------------- /progressbutton/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /progressbutton/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/build.gradle -------------------------------------------------------------------------------- /progressbutton/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/proguard-rules.pro -------------------------------------------------------------------------------- /progressbutton/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/AllCapsSpannedTransformationMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/AllCapsSpannedTransformationMethod.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/ButtonTextAnimatorExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/ButtonTextAnimatorExtensions.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/DrawableButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/DrawableButton.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/DrawableButtonExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/DrawableButtonExtensions.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/DrawableButtonUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/DrawableButtonUtils.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/DrawableParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/DrawableParams.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/DrawableSpan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/DrawableSpan.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/ProgressButtonHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/ProgressButtonHolder.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/ProgressButtonUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/ProgressButtonUtils.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/ProgressParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/ProgressParams.kt -------------------------------------------------------------------------------- /progressbutton/src/main/java/com/github/razir/progressbutton/TextChangeAnimatorParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razir/ProgressButton/HEAD/progressbutton/src/main/java/com/github/razir/progressbutton/TextChangeAnimatorParams.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':progressbutton' 2 | --------------------------------------------------------------------------------