├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── nomtek │ │ └── animations │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── nomtek │ │ │ └── animations │ │ │ ├── MainActivity.kt │ │ │ ├── MenuFragment.kt │ │ │ └── demo │ │ │ ├── ActivityTransitionFragment.kt │ │ │ ├── BottomSheetFragment.kt │ │ │ ├── ConstraintSetFragment.kt │ │ │ ├── CoordinatorLayoutFragment.kt │ │ │ ├── FlingFragment.kt │ │ │ ├── LayoutChangesFragment.kt │ │ │ ├── MotionLayoutFragment.kt │ │ │ ├── OtherMotionLayoutFragment.kt │ │ │ ├── ProgressButtonFragment.kt │ │ │ ├── SceneFragment.kt │ │ │ ├── SidePanelFragment.kt │ │ │ ├── SpringFragment.kt │ │ │ ├── TransformationDetailActivity.kt │ │ │ ├── TransformationFragment.kt │ │ │ ├── TransitionActivity.kt │ │ │ ├── TransitionLayoutChangesFragment.kt │ │ │ ├── VectorDrawableFragment.kt │ │ │ ├── behaviour │ │ │ ├── ShrinkBehaviour.kt │ │ │ └── SwipeToDismissBehaviour.kt │ │ │ ├── transition │ │ │ └── ChangeColor.kt │ │ │ ├── utils │ │ │ └── Utils.kt │ │ │ └── views │ │ │ ├── ContentView.kt │ │ │ ├── CustomMenu.kt │ │ │ ├── HandleView.kt │ │ │ └── SidePanelView.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── android.png │ │ ├── ic_write.png │ │ └── illu.jpg │ │ ├── drawable │ │ ├── avd_anim.xml │ │ ├── ic_baseline_edit_24.xml │ │ ├── ic_baseline_movie_24.xml │ │ ├── ic_cloud_upload_white_24dp.png │ │ ├── ic_done_white_48dp.png │ │ ├── ic_droid.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_pregnant_woman_white_48dp.png │ │ └── ic_vector_fwd.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_transformation_detail.xml │ │ ├── activity_transition.xml │ │ ├── content_fab.xml │ │ ├── fragment_activity_transition.xml │ │ ├── fragment_bottom_sheet_layout.xml │ │ ├── fragment_constraint_set.xml │ │ ├── fragment_constraint_set_alt.xml │ │ ├── fragment_coordinator_layout.xml │ │ ├── fragment_first.xml │ │ ├── fragment_fling.xml │ │ ├── fragment_layout_changes.xml │ │ ├── fragment_menu.xml │ │ ├── fragment_motion_layout.xml │ │ ├── fragment_other_motion_layout.xml │ │ ├── fragment_progress_button.xml │ │ ├── fragment_scene_layout.xml │ │ ├── fragment_second.xml │ │ ├── fragment_side_panel_layout.xml │ │ ├── fragment_spring.xml │ │ ├── fragment_transformation.xml │ │ ├── fragment_transition_changes_layout.xml │ │ ├── fragment_vector_drawable.xml │ │ ├── motion_01_cl_end.xml │ │ ├── motion_01_cl_start.xml │ │ ├── scene_a.xml │ │ └── scene_b.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 │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── scene_01.xml │ │ ├── scene_02.xml │ │ └── scene_03.xml │ └── test │ └── java │ └── com │ └── nomtek │ └── animations │ └── ExampleUnitTest.kt ├── gifs ├── activity_transition.gif ├── animate_layout_changes.gif ├── bottom_sheet.gif ├── constraint.gif ├── coordinator.gif ├── fling.gif ├── key_cycles.gif ├── motion.gif ├── motion_layout.png ├── progress_button.gif ├── scenes.gif ├── scenes.png ├── side_panel.gif ├── spring.gif ├── transformation.gif ├── transitions.gif └── vector_drawable.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/nomtek/animations/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/androidTest/java/com/nomtek/animations/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/MenuFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/MenuFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/ActivityTransitionFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/ActivityTransitionFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/BottomSheetFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/BottomSheetFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/ConstraintSetFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/ConstraintSetFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/CoordinatorLayoutFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/CoordinatorLayoutFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/FlingFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/FlingFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/LayoutChangesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/LayoutChangesFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/MotionLayoutFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/MotionLayoutFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/OtherMotionLayoutFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/OtherMotionLayoutFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/ProgressButtonFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/ProgressButtonFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/SceneFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/SceneFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/SidePanelFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/SidePanelFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/SpringFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/SpringFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/TransformationDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/TransformationDetailActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/TransformationFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/TransformationFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/TransitionActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/TransitionActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/TransitionLayoutChangesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/TransitionLayoutChangesFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/VectorDrawableFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/VectorDrawableFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/behaviour/ShrinkBehaviour.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/behaviour/ShrinkBehaviour.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/behaviour/SwipeToDismissBehaviour.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/behaviour/SwipeToDismissBehaviour.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/transition/ChangeColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/transition/ChangeColor.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/utils/Utils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/views/ContentView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/views/ContentView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/views/CustomMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/views/CustomMenu.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/views/HandleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/views/HandleView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/nomtek/animations/demo/views/SidePanelView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/java/com/nomtek/animations/demo/views/SidePanelView.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable-xhdpi/android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable-xhdpi/ic_write.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/illu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable-xhdpi/illu.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/avd_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/avd_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_edit_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_baseline_edit_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_movie_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_baseline_movie_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud_upload_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_cloud_upload_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_done_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_droid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_droid.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pregnant_woman_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_pregnant_woman_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_vector_fwd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/drawable/ic_vector_fwd.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_transformation_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/activity_transformation_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_transition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/activity_transition.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_fab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/content_fab.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_activity_transition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_activity_transition.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bottom_sheet_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_bottom_sheet_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_constraint_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_constraint_set.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_constraint_set_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_constraint_set_alt.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_coordinator_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_coordinator_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_first.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_fling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_fling.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_layout_changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_layout_changes.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_motion_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_motion_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_other_motion_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_other_motion_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_progress_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_progress_button.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_scene_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_scene_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_second.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_side_panel_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_side_panel_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_spring.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_transformation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_transformation.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_transition_changes_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_transition_changes_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_vector_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/fragment_vector_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/motion_01_cl_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/motion_01_cl_end.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/motion_01_cl_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/motion_01_cl_start.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scene_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/scene_a.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scene_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/layout/scene_b.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/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/nomtek/android-animations/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/nomtek/android-animations/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/scene_01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/xml/scene_01.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/scene_02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/xml/scene_02.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/scene_03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/main/res/xml/scene_03.xml -------------------------------------------------------------------------------- /app/src/test/java/com/nomtek/animations/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/app/src/test/java/com/nomtek/animations/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gifs/activity_transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/activity_transition.gif -------------------------------------------------------------------------------- /gifs/animate_layout_changes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/animate_layout_changes.gif -------------------------------------------------------------------------------- /gifs/bottom_sheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/bottom_sheet.gif -------------------------------------------------------------------------------- /gifs/constraint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/constraint.gif -------------------------------------------------------------------------------- /gifs/coordinator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/coordinator.gif -------------------------------------------------------------------------------- /gifs/fling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/fling.gif -------------------------------------------------------------------------------- /gifs/key_cycles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/key_cycles.gif -------------------------------------------------------------------------------- /gifs/motion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/motion.gif -------------------------------------------------------------------------------- /gifs/motion_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/motion_layout.png -------------------------------------------------------------------------------- /gifs/progress_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/progress_button.gif -------------------------------------------------------------------------------- /gifs/scenes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/scenes.gif -------------------------------------------------------------------------------- /gifs/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/scenes.png -------------------------------------------------------------------------------- /gifs/side_panel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/side_panel.gif -------------------------------------------------------------------------------- /gifs/spring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/spring.gif -------------------------------------------------------------------------------- /gifs/transformation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/transformation.gif -------------------------------------------------------------------------------- /gifs/transitions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/transitions.gif -------------------------------------------------------------------------------- /gifs/vector_drawable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gifs/vector_drawable.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomtek/android-animations/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Animations" --------------------------------------------------------------------------------