├── .gitignore ├── .idea └── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── LICENSE ├── README.md ├── assets └── progresshint-demo.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── library-addition ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── io │ └── techery │ └── progresshint │ └── addition │ ├── HorizontalProgressHintDelegate.java │ ├── ProgressHintScrollController.java │ ├── VerticalProgressHintDelegate.java │ ├── ViewUtil.java │ └── widget │ ├── SeekBar.java │ └── VerticalSeekBar.java ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── io │ │ └── techery │ │ └── progresshint │ │ └── ProgressHintDelegate.java │ └── res │ ├── anim │ ├── progress_hint_popup_hide.xml │ └── progress_hint_popup_show.xml │ ├── drawable │ └── bg_progress_hint_popup.xml │ ├── layout │ └── progress_hint_popup.xml │ └── values │ ├── attrs.xml │ └── styles.xml ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── progresshint │ │ ├── App.java │ │ ├── MainActivity.java │ │ └── ScrollActivity.java │ └── res │ ├── drawable │ └── bg_custom_seekbar_hint_popup.xml │ ├── layout │ ├── activity_main.xml │ ├── activity_scroll.xml │ └── custom_progress_hint_popup.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/README.md -------------------------------------------------------------------------------- /assets/progresshint-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/assets/progresshint-demo.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk17 -------------------------------------------------------------------------------- /library-addition/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/build.gradle -------------------------------------------------------------------------------- /library-addition/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library-addition/src/main/java/io/techery/progresshint/addition/HorizontalProgressHintDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/src/main/java/io/techery/progresshint/addition/HorizontalProgressHintDelegate.java -------------------------------------------------------------------------------- /library-addition/src/main/java/io/techery/progresshint/addition/ProgressHintScrollController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/src/main/java/io/techery/progresshint/addition/ProgressHintScrollController.java -------------------------------------------------------------------------------- /library-addition/src/main/java/io/techery/progresshint/addition/VerticalProgressHintDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/src/main/java/io/techery/progresshint/addition/VerticalProgressHintDelegate.java -------------------------------------------------------------------------------- /library-addition/src/main/java/io/techery/progresshint/addition/ViewUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/src/main/java/io/techery/progresshint/addition/ViewUtil.java -------------------------------------------------------------------------------- /library-addition/src/main/java/io/techery/progresshint/addition/widget/SeekBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/src/main/java/io/techery/progresshint/addition/widget/SeekBar.java -------------------------------------------------------------------------------- /library-addition/src/main/java/io/techery/progresshint/addition/widget/VerticalSeekBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library-addition/src/main/java/io/techery/progresshint/addition/widget/VerticalSeekBar.java -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/io/techery/progresshint/ProgressHintDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/java/io/techery/progresshint/ProgressHintDelegate.java -------------------------------------------------------------------------------- /library/src/main/res/anim/progress_hint_popup_hide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/res/anim/progress_hint_popup_hide.xml -------------------------------------------------------------------------------- /library/src/main/res/anim/progress_hint_popup_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/res/anim/progress_hint_popup_show.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/bg_progress_hint_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/res/drawable/bg_progress_hint_popup.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/progress_hint_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/res/layout/progress_hint_popup.xml -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/library/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/example/progresshint/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/java/com/example/progresshint/App.java -------------------------------------------------------------------------------- /sample/src/main/java/com/example/progresshint/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/java/com/example/progresshint/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/example/progresshint/ScrollActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/java/com/example/progresshint/ScrollActivity.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable/bg_custom_seekbar_hint_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/drawable/bg_custom_seekbar_hint_popup.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_scroll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/layout/activity_scroll.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/custom_progress_hint_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/layout/custom_progress_hint_popup.xml -------------------------------------------------------------------------------- /sample/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techery/progresshint/HEAD/settings.gradle --------------------------------------------------------------------------------