├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ ├── fragment_child.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── fragment_one.xml │ │ │ │ └── fragment_two.xml │ │ │ └── values-w820dp │ │ │ │ └── dimens.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── kr │ │ │ └── pe │ │ │ └── burt │ │ │ └── android │ │ │ └── lib │ │ │ └── fragmentnavigationcontroller │ │ │ └── app │ │ │ ├── ChildFragment.java │ │ │ ├── MainActivity.java │ │ │ ├── FragmentTwo.java │ │ │ └── FragmentOne.java │ ├── test │ │ └── java │ │ │ └── kr │ │ │ └── pe │ │ │ └── burt │ │ │ └── android │ │ │ └── lib │ │ │ └── fragmentnavigationcontroller │ │ │ └── app │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── kr │ │ └── pe │ │ └── burt │ │ └── android │ │ └── lib │ │ └── fragmentnavigationcontroller │ │ └── app │ │ └── ApplicationTest.java ├── proguard-rules.pro ├── build.gradle └── app.iml ├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── vcs.xml ├── libraries │ ├── junit_4_12.xml │ ├── support_annotations_23_4_0.xml │ ├── hamcrest_core_1_3.xml │ ├── support_vector_drawable_23_4_0.xml │ ├── animated_vector_drawable_23_4_0.xml │ ├── appcompat_v7_23_4_0.xml │ ├── fragmentanimations_0_1_0.xml │ └── support_v4_23_4_0.xml ├── runConfigurations.xml ├── modules.xml ├── compiler.xml ├── gradle.xml └── misc.xml ├── examples └── TabBarExample │ ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ ├── gradle.xml │ └── misc.xml │ ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ └── layout │ │ │ │ │ ├── fragment_layout.xml │ │ │ │ │ └── activity_main.xml │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── kr │ │ │ │ └── pe │ │ │ │ └── burt │ │ │ │ └── android │ │ │ │ └── tabbarexample │ │ │ │ ├── FragmentFirst.java │ │ │ │ ├── FragmentThird.java │ │ │ │ ├── FragmentSecond.java │ │ │ │ └── MainActivity.java │ │ ├── test │ │ │ └── java │ │ │ │ └── kr │ │ │ │ └── pe │ │ │ │ └── burt │ │ │ │ └── android │ │ │ │ └── tabbarexample │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── kr │ │ │ └── pe │ │ │ └── burt │ │ │ └── android │ │ │ └── tabbarexample │ │ │ └── ApplicationTest.java │ ├── proguard-rules.pro │ └── build.gradle │ ├── settings.gradle │ ├── .gitignore │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── build.gradle │ ├── gradle.properties │ ├── gradlew.bat │ └── gradlew ├── fragmentnavigationcontroller ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ └── animator │ │ │ │ ├── none.xml │ │ │ │ ├── fade_in.xml │ │ │ │ ├── fade_out.xml │ │ │ │ ├── stack_left_in.xml │ │ │ │ ├── stack_left_out.xml │ │ │ │ ├── cube_right_in.xml │ │ │ │ ├── cube_right_out.xml │ │ │ │ ├── slide_fragment_horizontal_left_in.xml │ │ │ │ ├── slide_fragment_horizontal_left_out.xml │ │ │ │ ├── slide_fragment_horizontal_right_in.xml │ │ │ │ ├── slide_fragment_horizontal_right_out.xml │ │ │ │ ├── slide_fragment_vertical_left_in.xml │ │ │ │ ├── slide_fragment_vertical_left_out.xml │ │ │ │ ├── slide_fragment_vertical_right_in.xml │ │ │ │ ├── slide_fragment_vertical_right_out.xml │ │ │ │ ├── cube_left_in.xml │ │ │ │ ├── cube_left_out.xml │ │ │ │ ├── accordion_left_in.xml │ │ │ │ ├── accordion_left_out.xml │ │ │ │ ├── cube_vertical_left_in.xml │ │ │ │ ├── cube_vertical_right_in.xml │ │ │ │ ├── cube_vertical_right_out.xml │ │ │ │ ├── cube_vertical_left_out.xml │ │ │ │ ├── table_horizontal_left_in.xml │ │ │ │ ├── table_vertical_left_in.xml │ │ │ │ ├── table_vertical_left_out.xml │ │ │ │ ├── table_vertical_right_in.xml │ │ │ │ ├── table_vertical_right_out.xml │ │ │ │ ├── accordion_right_in.xml │ │ │ │ ├── accordion_right_out.xml │ │ │ │ ├── accordion_vertical_left_in.xml │ │ │ │ ├── accordion_vertical_left_out.xml │ │ │ │ ├── table_horizontal_left_out.xml │ │ │ │ ├── table_horizontal_right_in.xml │ │ │ │ ├── table_horizontal_right_out.xml │ │ │ │ ├── accordion_vertical_right_in.xml │ │ │ │ ├── accordion_vertical_right_out.xml │ │ │ │ ├── zoom_from_left_corner_left_in.xml │ │ │ │ ├── zoom_from_left_corner_left_out.xml │ │ │ │ ├── zoom_from_left_corner_right_in.xml │ │ │ │ ├── zoom_from_left_corner_right_out.xml │ │ │ │ ├── zoom_from_right_corner_left_in.xml │ │ │ │ ├── zoom_from_right_corner_right_in.xml │ │ │ │ ├── zoom_from_right_corner_left_out.xml │ │ │ │ ├── zoom_from_right_corner_right_out.xml │ │ │ │ ├── glide_fragment_horizontal_out.xml │ │ │ │ ├── glide_fragment_horizontal_in.xml │ │ │ │ ├── card_flip_horizontal_left_in.xml │ │ │ │ ├── scalex_enter.xml │ │ │ │ ├── scaley_enter.xml │ │ │ │ ├── scalex_exit.xml │ │ │ │ ├── scaley_exit.xml │ │ │ │ ├── rotatedown_left_in.xml │ │ │ │ ├── rotatedown_right_in.xml │ │ │ │ ├── rotateleft_right_in.xml │ │ │ │ ├── rotatedown_left_out.xml │ │ │ │ ├── rotatedown_right_out.xml │ │ │ │ ├── rotateleft_left_out.xml │ │ │ │ ├── rotateleft_right_out.xml │ │ │ │ ├── rotateright_left_in.xml │ │ │ │ ├── rotateright_left_out.xml │ │ │ │ ├── rotateright_right_in.xml │ │ │ │ ├── rotateright_right_out.xml │ │ │ │ ├── rotateleft_left_in.xml │ │ │ │ ├── rotateup_left_out.xml │ │ │ │ ├── rotateup_right_in.xml │ │ │ │ ├── rotateup_right_out.xml │ │ │ │ ├── rotateup_left_in.xml │ │ │ │ ├── stack_right_in.xml │ │ │ │ ├── scalexy_exit.xml │ │ │ │ ├── stack_right_out.xml │ │ │ │ ├── scalexy_enter.xml │ │ │ │ ├── slide_fragment_out.xml │ │ │ │ ├── slide_fragment_in.xml │ │ │ │ ├── card_flip_vertical_right_out.xml │ │ │ │ ├── card_flip_vertical_left_in.xml │ │ │ │ ├── card_flip_horizontal_right_out.xml │ │ │ │ ├── card_flip_vertical_left_out.xml │ │ │ │ ├── card_flip_horizontal_left_out.xml │ │ │ │ ├── card_flip_horizontal_right_in.xml │ │ │ │ └── card_flip_vertical_right_in.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── kr │ │ │ └── pe │ │ │ └── burt │ │ │ └── android │ │ │ └── lib │ │ │ └── fragmentnavigationcontroller │ │ │ ├── AndroidFragment.java │ │ │ ├── FragmentNavigationController.java │ │ │ ├── AndroidFragmentFrameLayout.java │ │ │ └── PresentStyle.java │ ├── test │ │ └── java │ │ │ └── kr │ │ │ └── pe │ │ │ └── burt │ │ │ └── android │ │ │ └── lib │ │ │ └── fragmentnavigationcontroller │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── kr │ │ └── pe │ │ └── burt │ │ └── android │ │ └── lib │ │ └── fragmentnavigationcontroller │ │ └── ApplicationTest.java ├── proguard-rules.pro ├── build.gradle └── fragmentnavigationcontroller.iml ├── settings.gradle ├── art ├── tabbar.gif └── FragmentNavigationController.gif ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── gradle.properties ├── FragmentNavigationController.iml ├── LICENSE ├── gradlew.bat ├── gradlew └── README.md /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | FragmentNavigationController -------------------------------------------------------------------------------- /examples/TabBarExample/.idea/.name: -------------------------------------------------------------------------------- 1 | TabBarExample -------------------------------------------------------------------------------- /examples/TabBarExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/TabBarExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':fragmentnavigationcontroller' 2 | -------------------------------------------------------------------------------- /art/tabbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/art/tabbar.gif -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FragmentNavigationController 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/TabBarExample/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /art/FragmentNavigationController.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/art/FragmentNavigationController.gif -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TabBarExample 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/TabBarExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FragmentNavigationController 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/TabBarExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/examples/TabBarExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/examples/TabBarExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/examples/TabBarExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/examples/TabBarExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/examples/TabBarExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyfe79/FragmentNavigationController/HEAD/examples/TabBarExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/TabBarExample/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_child.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/none.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/TabBarExample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 7 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/stack_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/stack_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_horizontal_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_horizontal_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_horizontal_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_horizontal_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_vertical_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_vertical_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_vertical_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_vertical_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_vertical_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_vertical_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_vertical_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/cube_vertical_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_horizontal_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_vertical_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_vertical_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_vertical_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_vertical_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_vertical_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_vertical_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_horizontal_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_horizontal_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/table_horizontal_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_vertical_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/accordion_vertical_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_left_corner_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_left_corner_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_left_corner_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_left_corner_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_right_corner_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_right_corner_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_right_corner_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/zoom_from_right_corner_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /examples/TabBarExample/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/glide_fragment_horizontal_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/glide_fragment_horizontal_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/test/java/kr/pe/burt/android/tabbarexample/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package kr.pe.burt.android.tabbarexample; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/test/java/kr/pe/burt/android/lib/fragmentnavigationcontroller/app/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package kr.pe.burt.android.lib.fragmentnavigationcontroller.app; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/card_flip_horizontal_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/androidTest/java/kr/pe/burt/android/tabbarexample/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package kr.pe.burt.android.tabbarexample; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/scalex_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/scaley_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/test/java/kr/pe/burt/android/lib/fragmentnavigationcontroller/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package kr.pe.burt.android.lib.fragmentnavigationcontroller; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/scalex_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/scaley_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotatedown_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotatedown_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateleft_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /.idea/libraries/junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/androidTest/java/kr/pe/burt/android/lib/fragmentnavigationcontroller/app/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package kr.pe.burt.android.lib.fragmentnavigationcontroller.app; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotatedown_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotatedown_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateleft_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateleft_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateright_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateright_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateright_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateright_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateleft_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Log Files 26 | *.log 27 | 28 | # Android Studio Navigation editor temp files 29 | .navigation/ 30 | 31 | # Android Studio captures folder 32 | captures/ 33 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/androidTest/java/kr/pe/burt/android/lib/fragmentnavigationcontroller/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package kr.pe.burt.android.lib.fragmentnavigationcontroller; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateup_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateup_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateup_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/rotateup_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 16 | -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_23_4_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /examples/TabBarExample/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.1.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /examples/TabBarExample/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/stack_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | 19 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/scalexy_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 14 | 18 | 19 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/stack_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | 19 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/scalexy_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 15 | 16 | 20 | 21 | -------------------------------------------------------------------------------- /.idea/libraries/support_vector_drawable_23_4_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/libraries/animated_vector_drawable_23_4_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/burt/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/burt/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/burt/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /examples/TabBarExample/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.3" 6 | 7 | defaultConfig { 8 | applicationId "kr.pe.burt.android.lib.fragmentnavigationcontroller.app" 9 | minSdkVersion 17 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(include: ['*.jar'], dir: 'libs') 24 | testCompile 'junit:junit:4.12' 25 | compile 'com.labo.kaji:fragmentanimations:0.1.0' 26 | compile project(':fragmentnavigationcontroller') 27 | } 28 | -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_23_4_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /examples/TabBarExample/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | -------------------------------------------------------------------------------- /.idea/libraries/fragmentanimations_0_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | > 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /examples/TabBarExample/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_out.xml: -------------------------------------------------------------------------------- 1 | 15 | 16 | -------------------------------------------------------------------------------- /fragmentnavigationcontroller/src/main/res/animator/slide_fragment_in.xml: -------------------------------------------------------------------------------- 1 | 15 | 16 | 21 | -------------------------------------------------------------------------------- /.idea/libraries/support_v4_23_4_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 24 | 25 | -------------------------------------------------------------------------------- /FragmentNavigationController.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/TabBarExample/app/src/main/res/layout/fragment_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 17 | 18 |