├── .gitattributes ├── .github └── workflows │ └── android.yml ├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── jarRepositories.xml └── misc.xml ├── LICENSE ├── README.md ├── app ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── easyrevealdemo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── easyrevealdemo │ │ │ ├── CustomClipPathProvider.kt │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_android_white_128dp.xml │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── easyrevealdemo │ └── ExampleUnitTest.kt ├── demo screenshots ├── circular_reveal.gif ├── custom_reveal.gif ├── linear_reveal.gif ├── random_line_reveal.gif ├── star_reveal.gif ├── sweep_reveal.gif └── wave_reveal.gif ├── easyreveal ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── jem │ │ └── easyreveal │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── jem │ │ │ └── easyreveal │ │ │ ├── ClipPathProvider.kt │ │ │ ├── RevealAnimatorManager.kt │ │ │ ├── RevealLayout.kt │ │ │ ├── clippathproviders │ │ │ ├── CircularClipPathProvider.kt │ │ │ ├── LinearClipPathProvider.kt │ │ │ ├── RandomLineClipPathProvider.kt │ │ │ ├── StarClipPathProvider.kt │ │ │ ├── SweepClipPathProvider.kt │ │ │ └── WaveClipPathProvider.kt │ │ │ └── layouts │ │ │ ├── EasyRevealConstraintLayout.kt │ │ │ ├── EasyRevealFrameLayout.kt │ │ │ └── EasyRevealLinearLayout.kt │ └── res │ │ └── values │ │ └── attrs.xml │ └── test │ └── java │ └── com │ └── jem │ └── easyreveal │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | EasyRevealDemo -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/easyrevealdemo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/androidTest/java/com/example/easyrevealdemo/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/easyrevealdemo/CustomClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/java/com/example/easyrevealdemo/CustomClipPathProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/easyrevealdemo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/java/com/example/easyrevealdemo/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_white_128dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/drawable/ic_android_white_128dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/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/Chrisvin/EasyReveal/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/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/easyrevealdemo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/app/src/test/java/com/example/easyrevealdemo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /demo screenshots/circular_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/demo screenshots/circular_reveal.gif -------------------------------------------------------------------------------- /demo screenshots/custom_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/demo screenshots/custom_reveal.gif -------------------------------------------------------------------------------- /demo screenshots/linear_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/demo screenshots/linear_reveal.gif -------------------------------------------------------------------------------- /demo screenshots/random_line_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/demo screenshots/random_line_reveal.gif -------------------------------------------------------------------------------- /demo screenshots/star_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/demo screenshots/star_reveal.gif -------------------------------------------------------------------------------- /demo screenshots/sweep_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/demo screenshots/sweep_reveal.gif -------------------------------------------------------------------------------- /demo screenshots/wave_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/demo screenshots/wave_reveal.gif -------------------------------------------------------------------------------- /easyreveal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/.gitignore -------------------------------------------------------------------------------- /easyreveal/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/build.gradle -------------------------------------------------------------------------------- /easyreveal/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easyreveal/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/proguard-rules.pro -------------------------------------------------------------------------------- /easyreveal/src/androidTest/java/com/jem/easyreveal/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/androidTest/java/com/jem/easyreveal/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /easyreveal/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/ClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/ClipPathProvider.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/RevealAnimatorManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/RevealAnimatorManager.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/RevealLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/RevealLayout.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/CircularClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/CircularClipPathProvider.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/LinearClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/LinearClipPathProvider.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/RandomLineClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/RandomLineClipPathProvider.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/StarClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/StarClipPathProvider.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/SweepClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/SweepClipPathProvider.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/WaveClipPathProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/clippathproviders/WaveClipPathProvider.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/layouts/EasyRevealConstraintLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/layouts/EasyRevealConstraintLayout.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/layouts/EasyRevealFrameLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/layouts/EasyRevealFrameLayout.kt -------------------------------------------------------------------------------- /easyreveal/src/main/java/com/jem/easyreveal/layouts/EasyRevealLinearLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/java/com/jem/easyreveal/layouts/EasyRevealLinearLayout.kt -------------------------------------------------------------------------------- /easyreveal/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /easyreveal/src/test/java/com/jem/easyreveal/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/easyreveal/src/test/java/com/jem/easyreveal/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chrisvin/EasyReveal/HEAD/settings.gradle --------------------------------------------------------------------------------