├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── art ├── demo1.gif ├── demo2.gif └── demo3.gif ├── example ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── reveallayout │ │ ├── MainActivity.kt │ │ ├── MainActivity2.java │ │ ├── SecondActivity.kt │ │ └── SecondActivity2.java │ └── res │ ├── layout │ ├── activity_main.xml │ └── activity_second.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_rounded.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_rounded.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_rounded.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_rounded.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_rounded.png │ └── values │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── reveallayout ├── .gitignore ├── AndroidManifest.xml ├── build.gradle ├── res-public │ └── values │ │ └── public-attrs.xml ├── res │ └── values │ │ └── attr.xml ├── src │ └── com │ │ └── hendraanggrian │ │ ├── reveallayout │ │ ├── AnimatorPath.kt │ │ ├── OnMaskListener.java │ │ ├── PathEvaluator.kt │ │ ├── PathPoint.kt │ │ ├── Radius.kt │ │ ├── RevealLayoutImpl.kt │ │ └── RevealableLayout.kt │ │ └── widget │ │ ├── RevealFrameLayout.kt │ │ └── RevealLinearLayout.kt └── tests │ ├── AndroidManifest.xml │ ├── res │ └── layout │ │ ├── activity_instrumented.xml │ │ ├── fragment_test1.xml │ │ ├── fragment_test2.xml │ │ └── fragment_test3.xml │ └── src │ └── com │ └── hendraanggrian │ └── reveallayout │ └── test │ ├── InstrumentedActivity.kt │ ├── InstrumentedTest.kt │ ├── Test1Fragment.kt │ ├── Test2Fragment.kt │ └── Test3Fragment.kt └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/README.md -------------------------------------------------------------------------------- /art/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/art/demo1.gif -------------------------------------------------------------------------------- /art/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/art/demo2.gif -------------------------------------------------------------------------------- /art/demo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/art/demo3.gif -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/build.gradle -------------------------------------------------------------------------------- /example/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/proguard-rules.pro -------------------------------------------------------------------------------- /example/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/src/main/java/com/example/reveallayout/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/java/com/example/reveallayout/MainActivity.kt -------------------------------------------------------------------------------- /example/src/main/java/com/example/reveallayout/MainActivity2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/java/com/example/reveallayout/MainActivity2.java -------------------------------------------------------------------------------- /example/src/main/java/com/example/reveallayout/SecondActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/java/com/example/reveallayout/SecondActivity.kt -------------------------------------------------------------------------------- /example/src/main/java/com/example/reveallayout/SecondActivity2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/java/com/example/reveallayout/SecondActivity2.java -------------------------------------------------------------------------------- /example/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/src/main/res/layout/activity_second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/layout/activity_second.xml -------------------------------------------------------------------------------- /example/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-hdpi/ic_launcher_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-hdpi/ic_launcher_rounded.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-mdpi/ic_launcher_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-mdpi/ic_launcher_rounded.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xhdpi/ic_launcher_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-xhdpi/ic_launcher_rounded.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxhdpi/ic_launcher_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-xxhdpi/ic_launcher_rounded.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxxhdpi/ic_launcher_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/mipmap-xxxhdpi/ic_launcher_rounded.png -------------------------------------------------------------------------------- /example/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/example/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /reveallayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /reveallayout/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reveallayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/build.gradle -------------------------------------------------------------------------------- /reveallayout/res-public/values/public-attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/res-public/values/public-attrs.xml -------------------------------------------------------------------------------- /reveallayout/res/values/attr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/res/values/attr.xml -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/reveallayout/AnimatorPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/reveallayout/AnimatorPath.kt -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/reveallayout/OnMaskListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/reveallayout/OnMaskListener.java -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/reveallayout/PathEvaluator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/reveallayout/PathEvaluator.kt -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/reveallayout/PathPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/reveallayout/PathPoint.kt -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/reveallayout/Radius.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/reveallayout/Radius.kt -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/reveallayout/RevealLayoutImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/reveallayout/RevealLayoutImpl.kt -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/reveallayout/RevealableLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/reveallayout/RevealableLayout.kt -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/widget/RevealFrameLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/widget/RevealFrameLayout.kt -------------------------------------------------------------------------------- /reveallayout/src/com/hendraanggrian/widget/RevealLinearLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/src/com/hendraanggrian/widget/RevealLinearLayout.kt -------------------------------------------------------------------------------- /reveallayout/tests/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/AndroidManifest.xml -------------------------------------------------------------------------------- /reveallayout/tests/res/layout/activity_instrumented.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/res/layout/activity_instrumented.xml -------------------------------------------------------------------------------- /reveallayout/tests/res/layout/fragment_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/res/layout/fragment_test1.xml -------------------------------------------------------------------------------- /reveallayout/tests/res/layout/fragment_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/res/layout/fragment_test2.xml -------------------------------------------------------------------------------- /reveallayout/tests/res/layout/fragment_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/res/layout/fragment_test3.xml -------------------------------------------------------------------------------- /reveallayout/tests/src/com/hendraanggrian/reveallayout/test/InstrumentedActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/src/com/hendraanggrian/reveallayout/test/InstrumentedActivity.kt -------------------------------------------------------------------------------- /reveallayout/tests/src/com/hendraanggrian/reveallayout/test/InstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/src/com/hendraanggrian/reveallayout/test/InstrumentedTest.kt -------------------------------------------------------------------------------- /reveallayout/tests/src/com/hendraanggrian/reveallayout/test/Test1Fragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/src/com/hendraanggrian/reveallayout/test/Test1Fragment.kt -------------------------------------------------------------------------------- /reveallayout/tests/src/com/hendraanggrian/reveallayout/test/Test2Fragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/src/com/hendraanggrian/reveallayout/test/Test2Fragment.kt -------------------------------------------------------------------------------- /reveallayout/tests/src/com/hendraanggrian/reveallayout/test/Test3Fragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/reveallayout/tests/src/com/hendraanggrian/reveallayout/test/Test3Fragment.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanggrian/reveallayout/HEAD/settings.gradle --------------------------------------------------------------------------------