├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── eu │ │ └── laramartin │ │ └── master_detailsample │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── eu │ │ │ └── laramartin │ │ │ └── master_detailsample │ │ │ ├── AccountFragment.kt │ │ │ ├── FeedFragment.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MessagesFragment.kt │ │ │ ├── NotificationsFragment.kt │ │ │ ├── ProfileFragment.kt │ │ │ └── SettingsFragment.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_account_circle_black.xml │ │ ├── ic_email_black_24dp.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_notifications_black.xml │ │ ├── ic_person_black_24dp.xml │ │ ├── ic_question_answer_black_24dp.xml │ │ └── ic_settings_black.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_account.xml │ │ ├── fragment_feed.xml │ │ ├── fragment_messages.xml │ │ ├── fragment_notifications.xml │ │ ├── fragment_profile.xml │ │ ├── fragment_profile_land.xml │ │ └── fragment_settings.xml │ │ ├── menu │ │ └── menu.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_main.xml │ │ └── nav_graph_profile.xml │ │ ├── values-sw600dp │ │ └── bools.xml │ │ └── values │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── eu │ └── laramartin │ └── master_detailsample │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/eu/laramartin/master_detailsample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/androidTest/java/eu/laramartin/master_detailsample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/eu/laramartin/master_detailsample/AccountFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/java/eu/laramartin/master_detailsample/AccountFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/eu/laramartin/master_detailsample/FeedFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/java/eu/laramartin/master_detailsample/FeedFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/eu/laramartin/master_detailsample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/java/eu/laramartin/master_detailsample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/eu/laramartin/master_detailsample/MessagesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/java/eu/laramartin/master_detailsample/MessagesFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/eu/laramartin/master_detailsample/NotificationsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/java/eu/laramartin/master_detailsample/NotificationsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/eu/laramartin/master_detailsample/ProfileFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/java/eu/laramartin/master_detailsample/ProfileFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/eu/laramartin/master_detailsample/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/java/eu/laramartin/master_detailsample/SettingsFragment.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_account_circle_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable/ic_account_circle_black.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_email_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable/ic_email_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable/ic_notifications_black.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_person_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable/ic_person_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_question_answer_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable/ic_question_answer_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/drawable/ic_settings_black.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/fragment_account.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/fragment_feed.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/fragment_messages.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/fragment_notifications.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/fragment_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_profile_land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/fragment_profile_land.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/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/laramartin/android-navigation-master-detail/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/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_graph_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/navigation/nav_graph_main.xml -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_graph_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/navigation/nav_graph_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/values-sw600dp/bools.xml -------------------------------------------------------------------------------- /app/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/eu/laramartin/master_detailsample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/app/src/test/java/eu/laramartin/master_detailsample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramartin/android-navigation-master-detail/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------