├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml └── misc.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hakvardanyan │ │ └── onboarding │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── hakvardanyan │ │ │ └── onboarding │ │ │ └── OnBoardingActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── background_button_accent.xml │ │ ├── background_indicator_disabled.xml │ │ ├── background_indicator_enabled.xml │ │ ├── button_text_color_selector.xml │ │ ├── ic_car_in_magnifier.xml │ │ ├── ic_car_service.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_order_box.xml │ │ └── ic_swipe.xml │ │ ├── layout │ │ └── activity_onboarding.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 │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── onboarding_scene.xml │ └── test │ └── java │ └── com │ └── hakvardanyan │ └── onboarding │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── onboarding-green-night.gif └── onboarding-green.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | OnBoarding-With-Motion-Layout -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hakvardanyan/onboarding/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/androidTest/java/com/hakvardanyan/onboarding/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/hakvardanyan/onboarding/OnBoardingActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/java/com/hakvardanyan/onboarding/OnBoardingActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_button_accent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/background_button_accent.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_indicator_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/background_indicator_disabled.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_indicator_enabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/background_indicator_enabled.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_text_color_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/button_text_color_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_car_in_magnifier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/ic_car_in_magnifier.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_car_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/ic_car_service.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_order_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/ic_order_box.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_swipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/drawable/ic_swipe.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/layout/activity_onboarding.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/onboarding_scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/main/res/xml/onboarding_scene.xml -------------------------------------------------------------------------------- /app/src/test/java/com/hakvardanyan/onboarding/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/app/src/test/java/com/hakvardanyan/onboarding/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/onboarding-green-night.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/images/onboarding-green-night.gif -------------------------------------------------------------------------------- /images/onboarding-green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobvardanyan/onboarding-with-motion-layout/HEAD/images/onboarding-green.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "OnBoarding-With-Motion-Layout" --------------------------------------------------------------------------------