├── .gitignore ├── AndroidManifest.xml ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ ├── activity_main.xml │ ├── fragment_child.xml │ ├── fragment_parent_tab_host.xml │ ├── fragment_parent_viewpager.xml │ ├── fragment_single_child.xml │ ├── fragment_tab_host_layout.xml │ └── row_nested_fragment_type.xml ├── values-v21 │ └── styles.xml └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── droidtitan └── nested ├── AttachFragmentActivity.kt ├── MainActivity.kt ├── TabHostFragmentActivity.kt └── fragment ├── ChildFragment.kt ├── ParentTabHostFragment.kt ├── ParentViewPagerFragment.kt ├── SingleChildFragment.kt ├── TabHostLayoutFragment.kt └── TabHostUtils.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/gradlew.bat -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/fragment_child.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/layout/fragment_child.xml -------------------------------------------------------------------------------- /res/layout/fragment_parent_tab_host.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/layout/fragment_parent_tab_host.xml -------------------------------------------------------------------------------- /res/layout/fragment_parent_viewpager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/layout/fragment_parent_viewpager.xml -------------------------------------------------------------------------------- /res/layout/fragment_single_child.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/layout/fragment_single_child.xml -------------------------------------------------------------------------------- /res/layout/fragment_tab_host_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/layout/fragment_tab_host_layout.xml -------------------------------------------------------------------------------- /res/layout/row_nested_fragment_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/layout/row_nested_fragment_type.xml -------------------------------------------------------------------------------- /res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/values-v21/styles.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/droidtitan/nested/AttachFragmentActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/AttachFragmentActivity.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/MainActivity.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/TabHostFragmentActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/TabHostFragmentActivity.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/fragment/ChildFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/fragment/ChildFragment.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/fragment/ParentTabHostFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/fragment/ParentTabHostFragment.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/fragment/ParentViewPagerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/fragment/ParentViewPagerFragment.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/fragment/SingleChildFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/fragment/SingleChildFragment.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/fragment/TabHostLayoutFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/fragment/TabHostLayoutFragment.kt -------------------------------------------------------------------------------- /src/com/droidtitan/nested/fragment/TabHostUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoRS/nested-fragments/HEAD/src/com/droidtitan/nested/fragment/TabHostUtils.kt --------------------------------------------------------------------------------