├── .github └── workflows │ └── android.yml ├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── dev │ │ └── sergiobelda │ │ └── samples │ │ └── navigation │ │ └── sharedelements │ │ └── ui │ │ ├── MainActivity.kt │ │ ├── StartFragment.kt │ │ ├── recyclerviewexample │ │ ├── ItemDetailFragment.kt │ │ ├── RecyclerViewAdapter.kt │ │ ├── RecyclerViewFragment.kt │ │ └── dummy │ │ │ └── DummyContent.kt │ │ └── singleitemexample │ │ ├── DetailFragment.kt │ │ └── ParentFragment.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── font │ ├── montserrat.xml │ └── work_sans.xml │ ├── layout │ ├── activity_main.xml │ ├── fragment_detail.xml │ ├── fragment_item_detail.xml │ ├── fragment_parent.xml │ ├── fragment_recycler_view.xml │ ├── fragment_start.xml │ └── list_item.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 │ └── app_navigation.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── font_certs.xml │ ├── preloaded_fonts.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── renovate.json ├── screenshots ├── sample.gif └── sample_1.gif └── settings.gradle.kts /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/StartFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/StartFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/ItemDetailFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/ItemDetailFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/RecyclerViewAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/RecyclerViewAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/RecyclerViewFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/RecyclerViewFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/dummy/DummyContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/recyclerviewexample/dummy/DummyContent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/singleitemexample/DetailFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/singleitemexample/DetailFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/singleitemexample/ParentFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/kotlin/dev/sergiobelda/samples/navigation/sharedelements/ui/singleitemexample/ParentFragment.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/font/montserrat.xml -------------------------------------------------------------------------------- /app/src/main/res/font/work_sans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/font/work_sans.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/layout/fragment_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_item_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/layout/fragment_item_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/layout/fragment_parent.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recycler_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/layout/fragment_recycler_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/layout/fragment_start.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/app_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/navigation/app_navigation.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/gradlew.bat -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/renovate.json -------------------------------------------------------------------------------- /screenshots/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/screenshots/sample.gif -------------------------------------------------------------------------------- /screenshots/sample_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/screenshots/sample_1.gif -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serbelga/Navigation-Shared-Elements-Samples/HEAD/settings.gradle.kts --------------------------------------------------------------------------------