├── AnimationBigPicture ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationbigpicture │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxhdpi │ │ └── picture.jpg │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── activity_main_scene.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── AnimationCircularProgressBar ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationcircularprogressbar │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── shape_circle_background.xml │ │ └── shape_circle_progress.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── AnimationConstraintSetCode ├── app │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationconstraintsetcode │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── milkyway.jpg │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── AnimationConstraintSetLayout ├── app │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationconstraintsetlayout │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ ├── ic_launcher_foreground.xml │ │ └── space1.jpg │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── page1.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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── AnimationDaimajia ├── app │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationdaimajia │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── AnimationDrawable ├── app │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationdrawable │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── android_01.png │ │ ├── android_02.png │ │ ├── android_03.png │ │ ├── android_04.png │ │ ├── android_05.png │ │ ├── android_06.png │ │ ├── android_07.png │ │ ├── android_08.png │ │ ├── android_09.png │ │ ├── android_10.png │ │ ├── android_11.png │ │ ├── android_12.png │ │ ├── android_13.png │ │ ├── android_14.png │ │ ├── android_15.png │ │ ├── android_16.png │ │ ├── android_17.png │ │ ├── android_18.png │ │ ├── android_19.png │ │ ├── android_20.png │ │ ├── android_21.png │ │ ├── android_22.png │ │ ├── android_23.png │ │ ├── android_24.png │ │ ├── android_25.png │ │ ├── android_26.png │ │ ├── android_27.png │ │ ├── android_28.png │ │ ├── android_29.png │ │ ├── android_30.png │ │ ├── android_31.png │ │ ├── android_32.png │ │ ├── android_33.png │ │ ├── android_34.png │ │ ├── android_35.png │ │ ├── android_36.png │ │ ├── android_37.png │ │ ├── android_38.png │ │ ├── animation.xml │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── AnimationMotionLayout ├── app │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationmotionlayout │ │ │ ├── MainActivity.java │ │ │ ├── MainActivity2.java │ │ │ ├── MainActivity3.java │ │ │ └── MainActivity4.java │ │ └── res │ │ ├── anim │ │ ├── slide_in_left.xml │ │ ├── slide_in_right.xml │ │ ├── slide_out_left.xml │ │ └── slide_out_right.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── background.png │ │ ├── ic_launcher_background.xml │ │ ├── ic_moon.xml │ │ └── ic_star_outline.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_main2.xml │ │ ├── activity_main3.xml │ │ └── activity_main4.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 │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── motionscene_main.xml │ │ ├── motionscene_main2.xml │ │ ├── motionscene_main3.xml │ │ └── motionscene_main4.xml ├── build.gradle ├── ezgif.com-gif-to-mp4.mp4 ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── AnimationSimple ├── app │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── animationsimple │ │ │ └── MainActivity.java │ │ └── res │ │ ├── anim │ │ ├── blink_anim.xml │ │ ├── bounce.xml │ │ ├── fadein.xml │ │ ├── fadeout.xml │ │ ├── lefttoright.xml │ │ ├── mixed_anim.xml │ │ ├── righttoleft.xml │ │ ├── rotate.xml │ │ ├── sample_anim.xml │ │ ├── zoomin.xml │ │ └── zoomout.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── android.png │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── LottieAnimations ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── lottieanimations │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── raw │ │ └── mobile_payment.json │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── MakeSceneTransitionAnimation ├── UI.xd ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── makescenetransitionanimation │ │ │ ├── Page1.java │ │ │ └── Page2.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── background.png │ │ ├── circle_image.png │ │ └── rectangle_image.png │ │ ├── drawable-ldpi │ │ ├── background.png │ │ ├── circle_image.png │ │ └── rectangle_image.png │ │ ├── drawable-mdpi │ │ ├── background.png │ │ ├── circle_image.png │ │ └── rectangle_image.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── background.png │ │ ├── circle_image.png │ │ └── rectangle_image.png │ │ ├── drawable-xxhdpi │ │ ├── background.png │ │ ├── circle_image.png │ │ └── rectangle_image.png │ │ ├── drawable-xxxhdpi │ │ ├── background.png │ │ ├── circle_image.png │ │ └── rectangle_image.png │ │ ├── drawable │ │ ├── card_background.xml │ │ ├── description_background.xml │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_page1.xml │ │ └── activity_page2.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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── MotionLayoutDemo1 ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── motionlayoutdemo1 │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── main_image.jpg │ │ └── title_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_main_end.xml │ │ └── activity_main_start.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 │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── activity_main_scene.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── MotionLayoutDemo2 ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── motionlayoutdemo2 │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── blue_circle.xml │ │ ├── ic_launcher_background.xml │ │ └── orange_circle.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── activity_main_scene.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle ├── MotionLayoutNavDrawer ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── mahmood │ │ │ └── motionlayoutnavdrawer │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── header_image_background.png │ │ ├── icon_booking.png │ │ ├── icon_contactus.png │ │ ├── icon_home.png │ │ ├── icon_manu.png │ │ ├── icon_payment.png │ │ └── user_avatar.png │ │ ├── drawable-ldpi │ │ ├── header_image_background.png │ │ ├── icon_booking.png │ │ ├── icon_contactus.png │ │ ├── icon_home.png │ │ ├── icon_manu.png │ │ ├── icon_payment.png │ │ └── user_avatar.png │ │ ├── drawable-mdpi │ │ ├── header_image_background.png │ │ ├── icon_booking.png │ │ ├── icon_contactus.png │ │ ├── icon_home.png │ │ ├── icon_manu.png │ │ ├── icon_payment.png │ │ └── user_avatar.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── header_image_background.png │ │ ├── icon_booking.png │ │ ├── icon_contactus.png │ │ ├── icon_home.png │ │ ├── icon_manu.png │ │ ├── icon_payment.png │ │ └── user_avatar.png │ │ ├── drawable-xxhdpi │ │ ├── header_image_background.png │ │ ├── icon_booking.png │ │ ├── icon_contactus.png │ │ ├── icon_home.png │ │ ├── icon_manu.png │ │ ├── icon_payment.png │ │ └── user_avatar.png │ │ ├── drawable-xxxhdpi │ │ ├── header_image_background.png │ │ ├── icon_booking.png │ │ ├── icon_contactus.png │ │ ├── icon_home.png │ │ ├── icon_manu.png │ │ ├── icon_payment.png │ │ └── user_avatar.png │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── navdrawer_background.xml │ │ └── root_background.png │ │ ├── layout │ │ └── activity_main.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 │ │ └── activity_main_scene.xml ├── build.gradle ├── design.xd ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.gif └── settings.gradle └── README.md /AnimationBigPicture/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/build.gradle -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/java/nl/mahmood/animationbigpicture/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/java/nl/mahmood/animationbigpicture/MainActivity.java -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/drawable-xxhdpi/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/drawable-xxhdpi/picture.jpg -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationBigPicture/app/src/main/res/xml/activity_main_scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/app/src/main/res/xml/activity_main_scene.xml -------------------------------------------------------------------------------- /AnimationBigPicture/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/build.gradle -------------------------------------------------------------------------------- /AnimationBigPicture/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/gradle.properties -------------------------------------------------------------------------------- /AnimationBigPicture/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationBigPicture/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationBigPicture/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/gradlew -------------------------------------------------------------------------------- /AnimationBigPicture/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/gradlew.bat -------------------------------------------------------------------------------- /AnimationBigPicture/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationBigPicture/screenshot.gif -------------------------------------------------------------------------------- /AnimationBigPicture/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "AnimationBigPicture" -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/build.gradle -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/java/nl/mahmood/animationcircularprogressbar/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/java/nl/mahmood/animationcircularprogressbar/MainActivity.java -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/drawable/shape_circle_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/drawable/shape_circle_background.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/drawable/shape_circle_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/drawable/shape_circle_progress.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationCircularProgressBar/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/build.gradle -------------------------------------------------------------------------------- /AnimationCircularProgressBar/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/gradle.properties -------------------------------------------------------------------------------- /AnimationCircularProgressBar/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationCircularProgressBar/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationCircularProgressBar/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/gradlew -------------------------------------------------------------------------------- /AnimationCircularProgressBar/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/gradlew.bat -------------------------------------------------------------------------------- /AnimationCircularProgressBar/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationCircularProgressBar/screenshot.gif -------------------------------------------------------------------------------- /AnimationCircularProgressBar/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Animation Circular ProgressBar" -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/app.iml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/build.gradle -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/java/nl/mahmood/animationconstraintsetcode/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/java/nl/mahmood/animationconstraintsetcode/MainActivity.java -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/drawable/milkyway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/drawable/milkyway.jpg -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationConstraintSetCode/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/build.gradle -------------------------------------------------------------------------------- /AnimationConstraintSetCode/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/gradle.properties -------------------------------------------------------------------------------- /AnimationConstraintSetCode/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationConstraintSetCode/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationConstraintSetCode/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/gradlew -------------------------------------------------------------------------------- /AnimationConstraintSetCode/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/gradlew.bat -------------------------------------------------------------------------------- /AnimationConstraintSetCode/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetCode/screenshot.gif -------------------------------------------------------------------------------- /AnimationConstraintSetCode/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='Animation ConstraintSet Code' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/app.iml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/build.gradle -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/java/nl/mahmood/animationconstraintsetlayout/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/java/nl/mahmood/animationconstraintsetlayout/MainActivity.java -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/drawable-v24/space1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/drawable-v24/space1.jpg -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/layout/page1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/layout/page1.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/build.gradle -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/gradle.properties -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/gradlew -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/gradlew.bat -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationConstraintSetLayout/screenshot.gif -------------------------------------------------------------------------------- /AnimationConstraintSetLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='Animation ConstraintSet Layout' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /AnimationDaimajia/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/app.iml -------------------------------------------------------------------------------- /AnimationDaimajia/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/build.gradle -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/java/nl/mahmood/animationdaimajia/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/java/nl/mahmood/animationdaimajia/MainActivity.java -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationDaimajia/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationDaimajia/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/build.gradle -------------------------------------------------------------------------------- /AnimationDaimajia/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/gradle.properties -------------------------------------------------------------------------------- /AnimationDaimajia/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationDaimajia/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationDaimajia/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/gradlew -------------------------------------------------------------------------------- /AnimationDaimajia/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/gradlew.bat -------------------------------------------------------------------------------- /AnimationDaimajia/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDaimajia/screenshot.gif -------------------------------------------------------------------------------- /AnimationDaimajia/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='AnimationDaimajia' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /AnimationDrawable/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/app.iml -------------------------------------------------------------------------------- /AnimationDrawable/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/build.gradle -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/java/nl/mahmood/animationdrawable/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/java/nl/mahmood/animationdrawable/MainActivity.java -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_01.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_02.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_03.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_04.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_05.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_06.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_07.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_08.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_09.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_10.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_11.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_12.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_13.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_14.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_15.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_16.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_17.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_18.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_19.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_20.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_21.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_22.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_23.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_24.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_25.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_26.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_27.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_28.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_29.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_30.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_31.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_32.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_33.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_34.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_35.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_36.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_37.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/android_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/android_38.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/animation.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationDrawable/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationDrawable/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/build.gradle -------------------------------------------------------------------------------- /AnimationDrawable/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/gradle.properties -------------------------------------------------------------------------------- /AnimationDrawable/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationDrawable/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationDrawable/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/gradlew -------------------------------------------------------------------------------- /AnimationDrawable/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/gradlew.bat -------------------------------------------------------------------------------- /AnimationDrawable/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationDrawable/screenshot.gif -------------------------------------------------------------------------------- /AnimationDrawable/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='AnimationDrawable' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /AnimationMotionLayout/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/app.iml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/build.gradle -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity.java -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity2.java -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity3.java -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/java/nl/mahmood/animationmotionlayout/MainActivity4.java -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/anim/slide_in_left.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/anim/slide_out_left.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/drawable/ic_moon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/drawable/ic_moon.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/drawable/ic_star_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/drawable/ic_star_outline.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/layout/activity_main2.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/layout/activity_main3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/layout/activity_main3.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/layout/activity_main4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/layout/activity_main4.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/xml/motionscene_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/xml/motionscene_main.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/xml/motionscene_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/xml/motionscene_main2.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/xml/motionscene_main3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/xml/motionscene_main3.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/app/src/main/res/xml/motionscene_main4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/app/src/main/res/xml/motionscene_main4.xml -------------------------------------------------------------------------------- /AnimationMotionLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/build.gradle -------------------------------------------------------------------------------- /AnimationMotionLayout/ezgif.com-gif-to-mp4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/ezgif.com-gif-to-mp4.mp4 -------------------------------------------------------------------------------- /AnimationMotionLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/gradle.properties -------------------------------------------------------------------------------- /AnimationMotionLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationMotionLayout/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationMotionLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/gradlew -------------------------------------------------------------------------------- /AnimationMotionLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/gradlew.bat -------------------------------------------------------------------------------- /AnimationMotionLayout/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/screenshot.gif -------------------------------------------------------------------------------- /AnimationMotionLayout/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationMotionLayout/settings.gradle -------------------------------------------------------------------------------- /AnimationSimple/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/app.iml -------------------------------------------------------------------------------- /AnimationSimple/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/build.gradle -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/java/nl/mahmood/animationsimple/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/java/nl/mahmood/animationsimple/MainActivity.java -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/blink_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/blink_anim.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/bounce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/bounce.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/fadein.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/fadein.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/fadeout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/fadeout.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/lefttoright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/lefttoright.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/mixed_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/mixed_anim.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/righttoleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/righttoleft.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/rotate.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/sample_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/sample_anim.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/zoomin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/zoomin.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/anim/zoomout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/anim/zoomout.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/drawable/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/drawable/android.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimationSimple/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimationSimple/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/build.gradle -------------------------------------------------------------------------------- /AnimationSimple/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/gradle.properties -------------------------------------------------------------------------------- /AnimationSimple/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimationSimple/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimationSimple/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/gradlew -------------------------------------------------------------------------------- /AnimationSimple/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/gradlew.bat -------------------------------------------------------------------------------- /AnimationSimple/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/AnimationSimple/screenshot.gif -------------------------------------------------------------------------------- /AnimationSimple/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='AnimationSimple' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /LottieAnimations/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/build.gradle -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/java/nl/mahmood/lottieanimations/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/java/nl/mahmood/lottieanimations/MainActivity.java -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/raw/mobile_payment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/raw/mobile_payment.json -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /LottieAnimations/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /LottieAnimations/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/build.gradle -------------------------------------------------------------------------------- /LottieAnimations/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/gradle.properties -------------------------------------------------------------------------------- /LottieAnimations/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /LottieAnimations/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /LottieAnimations/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/gradlew -------------------------------------------------------------------------------- /LottieAnimations/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/gradlew.bat -------------------------------------------------------------------------------- /LottieAnimations/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/LottieAnimations/screenshot.gif -------------------------------------------------------------------------------- /LottieAnimations/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Lottie Animations" -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/UI.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/UI.xd -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/build.gradle -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/java/nl/mahmood/makescenetransitionanimation/Page1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/java/nl/mahmood/makescenetransitionanimation/Page1.java -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/java/nl/mahmood/makescenetransitionanimation/Page2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/java/nl/mahmood/makescenetransitionanimation/Page2.java -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-hdpi/circle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-hdpi/circle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-hdpi/rectangle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-hdpi/rectangle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-ldpi/circle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-ldpi/circle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-ldpi/rectangle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-ldpi/rectangle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-mdpi/circle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-mdpi/circle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-mdpi/rectangle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-mdpi/rectangle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xhdpi/circle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xhdpi/circle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xhdpi/rectangle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xhdpi/rectangle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xxhdpi/circle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xxhdpi/circle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xxhdpi/rectangle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xxhdpi/rectangle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xxxhdpi/circle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xxxhdpi/circle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable-xxxhdpi/rectangle_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable-xxxhdpi/rectangle_image.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable/card_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable/card_background.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable/description_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable/description_background.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/layout/activity_page1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/layout/activity_page1.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/layout/activity_page2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/layout/activity_page2.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/build.gradle -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/gradle.properties -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/gradlew -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/gradlew.bat -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/screenshot.gif -------------------------------------------------------------------------------- /MakeSceneTransitionAnimation/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MakeSceneTransitionAnimation/settings.gradle -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/build.gradle -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/java/nl/mahmood/motionlayoutdemo1/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/java/nl/mahmood/motionlayoutdemo1/MainActivity.java -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/drawable/main_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/drawable/main_image.jpg -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/drawable/title_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/drawable/title_background.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/layout/activity_main_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/layout/activity_main_end.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/layout/activity_main_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/layout/activity_main_start.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/app/src/main/res/xml/activity_main_scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/app/src/main/res/xml/activity_main_scene.xml -------------------------------------------------------------------------------- /MotionLayoutDemo1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/build.gradle -------------------------------------------------------------------------------- /MotionLayoutDemo1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/gradle.properties -------------------------------------------------------------------------------- /MotionLayoutDemo1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MotionLayoutDemo1/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /MotionLayoutDemo1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/gradlew -------------------------------------------------------------------------------- /MotionLayoutDemo1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/gradlew.bat -------------------------------------------------------------------------------- /MotionLayoutDemo1/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo1/screenshot.gif -------------------------------------------------------------------------------- /MotionLayoutDemo1/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "MotionLayoutDemo1" -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/build.gradle -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/java/nl/mahmood/motionlayoutdemo2/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/java/nl/mahmood/motionlayoutdemo2/MainActivity.java -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/drawable/blue_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/drawable/blue_circle.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/drawable/orange_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/drawable/orange_circle.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/app/src/main/res/xml/activity_main_scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/app/src/main/res/xml/activity_main_scene.xml -------------------------------------------------------------------------------- /MotionLayoutDemo2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/build.gradle -------------------------------------------------------------------------------- /MotionLayoutDemo2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/gradle.properties -------------------------------------------------------------------------------- /MotionLayoutDemo2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MotionLayoutDemo2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /MotionLayoutDemo2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/gradlew -------------------------------------------------------------------------------- /MotionLayoutDemo2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/gradlew.bat -------------------------------------------------------------------------------- /MotionLayoutDemo2/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutDemo2/screenshot.gif -------------------------------------------------------------------------------- /MotionLayoutDemo2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "MotionLayoutDemo2" -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/build.gradle -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/java/nl/mahmood/motionlayoutnavdrawer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/java/nl/mahmood/motionlayoutnavdrawer/MainActivity.java -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/header_image_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/header_image_background.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_booking.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_contactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_contactus.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_home.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_manu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_manu.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/icon_payment.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/user_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-hdpi/user_avatar.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/header_image_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/header_image_background.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_booking.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_contactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_contactus.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_home.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_manu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_manu.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/icon_payment.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/user_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-ldpi/user_avatar.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/header_image_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/header_image_background.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_booking.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_contactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_contactus.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_home.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_manu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_manu.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/icon_payment.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/user_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-mdpi/user_avatar.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/header_image_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/header_image_background.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_booking.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_contactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_contactus.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_home.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_manu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_manu.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/icon_payment.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/user_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xhdpi/user_avatar.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/header_image_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/header_image_background.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_booking.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_contactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_contactus.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_home.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_manu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_manu.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/icon_payment.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/user_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxhdpi/user_avatar.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/header_image_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/header_image_background.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_booking.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_contactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_contactus.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_home.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_manu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_manu.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/icon_payment.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/user_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable-xxxhdpi/user_avatar.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable/navdrawer_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable/navdrawer_background.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/drawable/root_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/drawable/root_background.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/app/src/main/res/xml/activity_main_scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/app/src/main/res/xml/activity_main_scene.xml -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/build.gradle -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/design.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/design.xd -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/gradle.properties -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/gradlew -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/gradlew.bat -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/MotionLayoutNavDrawer/screenshot.gif -------------------------------------------------------------------------------- /MotionLayoutNavDrawer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "MotionLayout NavDrawer" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmood-ghaem/Android_Animation/HEAD/README.md --------------------------------------------------------------------------------