├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── media ├── content_bottomin.gif ├── content_bounce.gif ├── content_fade.gif ├── content_none.gif ├── content_scale.gif ├── content_slider.gif ├── content_topin.gif ├── flip_bitmap.gif ├── flip_circle.gif ├── flip_rectangle.gif ├── flip_roundrect.gif ├── flip_square.gif ├── flip_vector.gif ├── leftin_bitmap.gif ├── leftin_circle.gif ├── leftin_rectangle.gif ├── leftin_roundrectangle.gif ├── leftin_square.gif ├── leftin_vector.gif ├── none_bitmap.gif ├── none_circle.gif ├── none_rectangle.gif ├── none_roundrectangle.gif ├── none_square.gif ├── none_vector.gif ├── rightin_bitmap.gif ├── rightin_circle.gif ├── rightin_rectangle.gif ├── rightin_roundrectangle.gif ├── rightin_square.gif ├── rightin_vector.gif ├── sample.gif ├── scale_bitmap.gif ├── scale_circle.gif ├── scale_rectangle.gif ├── scale_roundrect.gif ├── scale_square.gif ├── scale_vector.gif ├── smoothscale_bitmap.gif ├── smoothscale_circle.gif ├── smoothscale_rectangle.gif ├── smoothscale_roundrect.gif ├── smoothscale_square.gif └── smoothscale_vector.gif ├── settings.gradle ├── walkthrough-activity-example ├── .gitignore ├── build.gradle ├── debug │ ├── app-debug.apk │ └── output-metadata.json ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── walkthrough_activity_example │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── walkthrough_activity_example │ │ │ ├── HomeActivity.kt │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxhdpi │ │ ├── burger.png │ │ ├── delivery.png │ │ ├── order.png │ │ └── tasty_dish.png │ │ ├── drawable-xxxhdpi │ │ ├── burger.png │ │ ├── delivery.png │ │ ├── order.png │ │ └── tasty_dish.png │ │ ├── drawable │ │ ├── ic_heart.xml │ │ └── ic_launcher_background.xml │ │ ├── font │ │ ├── robotobold.ttf │ │ └── robotolight.ttf │ │ ├── layout │ │ ├── activity_home.xml │ │ └── 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-night │ │ ├── strings.xml │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── walkthrough_activity_example │ └── ExampleUnitTest.kt ├── walkthrough-fragment-example ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── walkthrough_fragment_example │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── walkthrough_fragment_example │ │ │ ├── HomeFragment.kt │ │ │ ├── HostingActivity.kt │ │ │ └── SampleFragment.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxhdpi │ │ ├── burger.png │ │ ├── delivery.png │ │ ├── order.png │ │ └── tasty_dish.png │ │ ├── drawable-xxxhdpi │ │ ├── burger.png │ │ ├── delivery.png │ │ ├── order.png │ │ └── tasty_dish.png │ │ ├── drawable │ │ ├── ic_heart.xml │ │ └── ic_launcher_background.xml │ │ ├── font │ │ ├── robotobold.ttf │ │ └── robotolight.ttf │ │ ├── layout │ │ ├── activity_hosting.xml │ │ ├── fragment_home.xml │ │ └── fragment_sample.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 │ │ ├── navigation │ │ └── nav_graph.xml │ │ ├── values-night │ │ ├── strings.xml │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── example │ └── walkthrough_fragment_example │ └── ExampleUnitTest.kt └── walkthroughandroid ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src ├── androidTest └── java │ └── com │ └── mi │ └── walkthroughandroid │ └── ExampleInstrumentedTest.kt ├── main ├── AndroidManifest.xml ├── java │ └── com │ │ └── mi │ │ └── walkthroughandroid │ │ ├── animation │ │ └── enums │ │ │ ├── ContentAnimationType.kt │ │ │ └── IndicatorAnimatonType.kt │ │ ├── builder │ │ └── WalkThroughBuilder.kt │ │ ├── data │ │ ├── IndicatorSelectorModel.kt │ │ ├── WalkThroughModel.kt │ │ └── WalkThroughScreenModel.kt │ │ ├── dsl │ │ └── WalkThroughDsl.kt │ │ ├── extensions │ │ ├── ButtonExt.kt │ │ ├── ImageViewExt.kt │ │ ├── IntExt.kt │ │ ├── TextViewExt.kt │ │ ├── ViewExt.kt │ │ └── ViewGroupExt.kt │ │ ├── listeners │ │ └── OnSwipeListener.kt │ │ ├── main │ │ └── WalkThroughScreenMaker.kt │ │ ├── ui │ │ ├── activity │ │ │ └── WalkThroughActivity.kt │ │ ├── adapter │ │ │ └── PagerIndicatorAdapter.kt │ │ ├── common │ │ │ └── SpaceItemDecoration.kt │ │ ├── enums │ │ │ └── IndicatorStyle.kt │ │ └── fragment │ │ │ └── WalkThroughFragment.kt │ │ └── utils │ │ ├── AnimUtils.kt │ │ ├── Constants.kt │ │ ├── ContentAnimUtils.kt │ │ └── ShapeUtils.kt └── res │ ├── anim │ ├── bottom_in.xml │ ├── bounce.xml │ ├── drop.xml │ ├── fade.xml │ ├── flip.xml │ ├── left_in.xml │ ├── left_out.xml │ ├── none.xml │ ├── right_in.xml │ ├── right_out.xml │ ├── scale.xml │ ├── smooth_scale.xml │ └── top_in.xml │ ├── drawable-mdpi │ ├── placeholder.png │ └── walkthrough.png │ ├── drawable-xxhdpi │ ├── placeholder.png │ └── walkthrough.png │ ├── drawable-xxxhdpi │ ├── placeholder.png │ └── walkthrough.png │ ├── drawable │ ├── selector_indicator.xml │ ├── shape_active_indicator.xml │ └── shape_inactive_indicator.xml │ ├── font │ ├── robotobold.ttf │ └── robotolight.ttf │ ├── layout-normal │ ├── activity_walk_through.xml │ └── fragment_walk_through.xml │ ├── layout │ ├── activity_walk_through.xml │ ├── fragment_walk_through.xml │ └── item_indicator.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── integer.xml │ ├── strings.xml │ └── themes.xml └── test └── java └── com └── mi └── walkthroughandroid └── ExampleUnitTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/gradlew.bat -------------------------------------------------------------------------------- /media/content_bottomin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/content_bottomin.gif -------------------------------------------------------------------------------- /media/content_bounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/content_bounce.gif -------------------------------------------------------------------------------- /media/content_fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/content_fade.gif -------------------------------------------------------------------------------- /media/content_none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/content_none.gif -------------------------------------------------------------------------------- /media/content_scale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/content_scale.gif -------------------------------------------------------------------------------- /media/content_slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/content_slider.gif -------------------------------------------------------------------------------- /media/content_topin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/content_topin.gif -------------------------------------------------------------------------------- /media/flip_bitmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/flip_bitmap.gif -------------------------------------------------------------------------------- /media/flip_circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/flip_circle.gif -------------------------------------------------------------------------------- /media/flip_rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/flip_rectangle.gif -------------------------------------------------------------------------------- /media/flip_roundrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/flip_roundrect.gif -------------------------------------------------------------------------------- /media/flip_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/flip_square.gif -------------------------------------------------------------------------------- /media/flip_vector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/flip_vector.gif -------------------------------------------------------------------------------- /media/leftin_bitmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/leftin_bitmap.gif -------------------------------------------------------------------------------- /media/leftin_circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/leftin_circle.gif -------------------------------------------------------------------------------- /media/leftin_rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/leftin_rectangle.gif -------------------------------------------------------------------------------- /media/leftin_roundrectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/leftin_roundrectangle.gif -------------------------------------------------------------------------------- /media/leftin_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/leftin_square.gif -------------------------------------------------------------------------------- /media/leftin_vector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/leftin_vector.gif -------------------------------------------------------------------------------- /media/none_bitmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/none_bitmap.gif -------------------------------------------------------------------------------- /media/none_circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/none_circle.gif -------------------------------------------------------------------------------- /media/none_rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/none_rectangle.gif -------------------------------------------------------------------------------- /media/none_roundrectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/none_roundrectangle.gif -------------------------------------------------------------------------------- /media/none_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/none_square.gif -------------------------------------------------------------------------------- /media/none_vector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/none_vector.gif -------------------------------------------------------------------------------- /media/rightin_bitmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/rightin_bitmap.gif -------------------------------------------------------------------------------- /media/rightin_circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/rightin_circle.gif -------------------------------------------------------------------------------- /media/rightin_rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/rightin_rectangle.gif -------------------------------------------------------------------------------- /media/rightin_roundrectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/rightin_roundrectangle.gif -------------------------------------------------------------------------------- /media/rightin_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/rightin_square.gif -------------------------------------------------------------------------------- /media/rightin_vector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/rightin_vector.gif -------------------------------------------------------------------------------- /media/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/sample.gif -------------------------------------------------------------------------------- /media/scale_bitmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/scale_bitmap.gif -------------------------------------------------------------------------------- /media/scale_circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/scale_circle.gif -------------------------------------------------------------------------------- /media/scale_rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/scale_rectangle.gif -------------------------------------------------------------------------------- /media/scale_roundrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/scale_roundrect.gif -------------------------------------------------------------------------------- /media/scale_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/scale_square.gif -------------------------------------------------------------------------------- /media/scale_vector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/scale_vector.gif -------------------------------------------------------------------------------- /media/smoothscale_bitmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/smoothscale_bitmap.gif -------------------------------------------------------------------------------- /media/smoothscale_circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/smoothscale_circle.gif -------------------------------------------------------------------------------- /media/smoothscale_rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/smoothscale_rectangle.gif -------------------------------------------------------------------------------- /media/smoothscale_roundrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/smoothscale_roundrect.gif -------------------------------------------------------------------------------- /media/smoothscale_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/smoothscale_square.gif -------------------------------------------------------------------------------- /media/smoothscale_vector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/media/smoothscale_vector.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/settings.gradle -------------------------------------------------------------------------------- /walkthrough-activity-example/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /walkthrough-activity-example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/build.gradle -------------------------------------------------------------------------------- /walkthrough-activity-example/debug/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/debug/app-debug.apk -------------------------------------------------------------------------------- /walkthrough-activity-example/debug/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/debug/output-metadata.json -------------------------------------------------------------------------------- /walkthrough-activity-example/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/proguard-rules.pro -------------------------------------------------------------------------------- /walkthrough-activity-example/src/androidTest/java/com/walkthrough_activity_example/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/androidTest/java/com/walkthrough_activity_example/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/java/com/example/walkthrough_activity_example/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/java/com/example/walkthrough_activity_example/HomeActivity.kt -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/java/com/example/walkthrough_activity_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/java/com/example/walkthrough_activity_example/MainActivity.kt -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxhdpi/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxhdpi/burger.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxhdpi/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxhdpi/delivery.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxhdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxhdpi/order.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxhdpi/tasty_dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxhdpi/tasty_dish.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxxhdpi/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxxhdpi/burger.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxxhdpi/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxxhdpi/delivery.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxxhdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxxhdpi/order.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable-xxxhdpi/tasty_dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable-xxxhdpi/tasty_dish.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/font/robotobold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/font/robotobold.ttf -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/font/robotolight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/font/robotolight.ttf -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/layout/activity_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/layout/activity_home.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/values-night/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/values-night/strings.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /walkthrough-activity-example/src/test/java/com/walkthrough_activity_example/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-activity-example/src/test/java/com/walkthrough_activity_example/ExampleUnitTest.kt -------------------------------------------------------------------------------- /walkthrough-fragment-example/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /walkthrough-fragment-example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/build.gradle -------------------------------------------------------------------------------- /walkthrough-fragment-example/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/proguard-rules.pro -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/androidTest/java/com/example/walkthrough_fragment_example/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/androidTest/java/com/example/walkthrough_fragment_example/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/java/com/example/walkthrough_fragment_example/HomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/java/com/example/walkthrough_fragment_example/HomeFragment.kt -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/java/com/example/walkthrough_fragment_example/HostingActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/java/com/example/walkthrough_fragment_example/HostingActivity.kt -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/java/com/example/walkthrough_fragment_example/SampleFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/java/com/example/walkthrough_fragment_example/SampleFragment.kt -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxhdpi/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxhdpi/burger.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxhdpi/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxhdpi/delivery.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxhdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxhdpi/order.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxhdpi/tasty_dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxhdpi/tasty_dish.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/burger.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/delivery.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/order.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/tasty_dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable-xxxhdpi/tasty_dish.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/font/robotobold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/font/robotobold.ttf -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/font/robotolight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/font/robotolight.ttf -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/layout/activity_hosting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/layout/activity_hosting.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/layout/fragment_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/layout/fragment_sample.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/navigation/nav_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/navigation/nav_graph.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/values-night/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/values-night/strings.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /walkthrough-fragment-example/src/test/java/com/example/walkthrough_fragment_example/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthrough-fragment-example/src/test/java/com/example/walkthrough_fragment_example/ExampleUnitTest.kt -------------------------------------------------------------------------------- /walkthroughandroid/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /walkthroughandroid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/build.gradle -------------------------------------------------------------------------------- /walkthroughandroid/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /walkthroughandroid/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/proguard-rules.pro -------------------------------------------------------------------------------- /walkthroughandroid/src/androidTest/java/com/mi/walkthroughandroid/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/androidTest/java/com/mi/walkthroughandroid/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/animation/enums/ContentAnimationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/animation/enums/ContentAnimationType.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/animation/enums/IndicatorAnimatonType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/animation/enums/IndicatorAnimatonType.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/builder/WalkThroughBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/builder/WalkThroughBuilder.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/data/IndicatorSelectorModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/data/IndicatorSelectorModel.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/data/WalkThroughModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/data/WalkThroughModel.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/data/WalkThroughScreenModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/data/WalkThroughScreenModel.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/dsl/WalkThroughDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/dsl/WalkThroughDsl.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ButtonExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ButtonExt.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ImageViewExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ImageViewExt.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/IntExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/IntExt.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/TextViewExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/TextViewExt.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ViewExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ViewExt.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ViewGroupExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/extensions/ViewGroupExt.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/listeners/OnSwipeListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/listeners/OnSwipeListener.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/main/WalkThroughScreenMaker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/main/WalkThroughScreenMaker.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/activity/WalkThroughActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/activity/WalkThroughActivity.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/adapter/PagerIndicatorAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/adapter/PagerIndicatorAdapter.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/common/SpaceItemDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/common/SpaceItemDecoration.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/enums/IndicatorStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/enums/IndicatorStyle.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/fragment/WalkThroughFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/ui/fragment/WalkThroughFragment.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/AnimUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/AnimUtils.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/Constants.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/ContentAnimUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/ContentAnimUtils.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/ShapeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/java/com/mi/walkthroughandroid/utils/ShapeUtils.kt -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/bottom_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/bottom_in.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/bounce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/bounce.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/drop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/drop.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/fade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/fade.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/flip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/flip.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/left_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/left_in.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/left_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/left_out.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/none.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/right_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/right_in.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/right_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/right_out.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/scale.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/smooth_scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/smooth_scale.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/anim/top_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/anim/top_in.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable-mdpi/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable-mdpi/placeholder.png -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable-mdpi/walkthrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable-mdpi/walkthrough.png -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable-xxhdpi/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable-xxhdpi/placeholder.png -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable-xxhdpi/walkthrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable-xxhdpi/walkthrough.png -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable-xxxhdpi/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable-xxxhdpi/placeholder.png -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable-xxxhdpi/walkthrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable-xxxhdpi/walkthrough.png -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable/selector_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable/selector_indicator.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable/shape_active_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable/shape_active_indicator.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/drawable/shape_inactive_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/drawable/shape_inactive_indicator.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/font/robotobold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/font/robotobold.ttf -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/font/robotolight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/font/robotolight.ttf -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/layout-normal/activity_walk_through.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/layout-normal/activity_walk_through.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/layout-normal/fragment_walk_through.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/layout-normal/fragment_walk_through.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/layout/activity_walk_through.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/layout/activity_walk_through.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/layout/fragment_walk_through.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/layout/fragment_walk_through.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/layout/item_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/layout/item_indicator.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/values/integer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/values/integer.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /walkthroughandroid/src/test/java/com/mi/walkthroughandroid/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/Walk-Through-Screen/HEAD/walkthroughandroid/src/test/java/com/mi/walkthroughandroid/ExampleUnitTest.kt --------------------------------------------------------------------------------