├── AnimatedClock-Sample ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ └── vcs.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── kpstv │ │ │ └── animatedclock │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── kpstv │ │ │ │ └── animatedclock │ │ │ │ ├── MainActivity.kt │ │ │ │ └── NumberColumn.kt │ │ └── 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 │ │ │ ├── number_column.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── kpstv │ │ └── animatedclock │ │ └── ExampleUnitTest.kt ├── art │ ├── app-debug.apk │ └── demo.gif ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FabReveal-Fragment-Transaction ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ └── vcs.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── kpstv │ │ │ └── fabreveal │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── kpstv │ │ │ │ └── fabreveal │ │ │ │ ├── AbstractBottomNavActivity.kt │ │ │ │ ├── FabReveal.kt │ │ │ │ ├── Fragments.kt │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_baseline_add_24.xml │ │ │ ├── ic_baseline_home_24.xml │ │ │ ├── ic_baseline_playlist_add_check_24.xml │ │ │ ├── ic_baseline_video_library_24.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_common.xml │ │ │ └── fragment_third.xml │ │ │ ├── menu │ │ │ └── menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── kpstv │ │ └── fabreveal │ │ └── ExampleUnitTest.kt ├── art │ ├── app-debug.apk │ └── demo.gif ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md └── SpringBack-RecyclerView ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── kpstv │ │ └── dampingrecyclerview │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── kpstv │ │ │ └── dampingrecyclerview │ │ │ ├── data │ │ │ └── Extensions.kt │ │ │ └── ui │ │ │ ├── adapters │ │ │ └── AnimalsAdapter.kt │ │ │ ├── helpers │ │ │ └── SpringScrollHelper.kt │ │ │ └── screens │ │ │ └── main │ │ │ ├── MainActivity.kt │ │ │ └── MainViewModel.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_baseline_arrow_back_24.xml │ │ ├── ic_launcher_background.xml │ │ ├── icon_african_bush_elephant.png │ │ ├── icon_arctic_wolf.png │ │ ├── icon_black_backed_jackal.png │ │ ├── icon_black_rhinoceros.png │ │ ├── icon_blackhowler_monkey.png │ │ ├── icon_bluepoison_dart_frog.png │ │ ├── icon_capybara.png │ │ ├── icon_chacma_baboon.png │ │ ├── icon_cheetah.png │ │ ├── icon_chinstrap_penguin.png │ │ ├── icon_common_brushtail.png │ │ ├── icon_dall_sheep.png │ │ ├── icon_eastern_grey_kangaroo.png │ │ ├── icon_elk.png │ │ ├── icon_emperor_penguin.png │ │ ├── icon_ermine.png │ │ ├── icon_giant_otter.png │ │ ├── icon_golden_headed_lion_tamarin.png │ │ ├── icon_harp_seal.png │ │ ├── icon_hippopo_tamus.png │ │ ├── icon_jaguar.png │ │ ├── icon_kinkajou.png │ │ ├── icon_koala.png │ │ ├── icon_leopard.png │ │ ├── icon_lion.png │ │ ├── icon_moose.png │ │ ├── icon_mus_ox.png │ │ ├── icon_nmorth_white_rhinoceros.png │ │ ├── icon_norway_lemmings.png │ │ ├── icon_ocelot.png │ │ ├── icon_olive_baboon.png │ │ ├── icon_plains_zebra.png │ │ ├── icon_platypus.png │ │ ├── icon_polar_bear.png │ │ ├── icon_sea_otter.png │ │ ├── icon_southern_elephant_seal.png │ │ ├── icon_spotted_hyaena.png │ │ ├── icon_tasmanian_devil.png │ │ ├── icon_two_toed_sloths.png │ │ ├── icon_vervet_monkey.png │ │ ├── icon_walrus.png │ │ ├── icon_weddell_seal.png │ │ └── icon_wombat.png │ │ ├── layout │ │ ├── activity_main.xml │ │ └── base_item.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 │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── kpstv │ └── dampingrecyclerview │ └── ExampleUnitTest.kt ├── art ├── app-debug.apk └── demo.gif ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /AnimatedClock-Sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/.gitignore -------------------------------------------------------------------------------- /AnimatedClock-Sample/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /AnimatedClock-Sample/.idea/.name: -------------------------------------------------------------------------------- 1 | AnimatedClock -------------------------------------------------------------------------------- /AnimatedClock-Sample/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/.idea/compiler.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/.idea/gradle.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/.idea/misc.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/.idea/vcs.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/README.md -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/build.gradle -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/proguard-rules.pro -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/androidTest/java/com/kpstv/animatedclock/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/androidTest/java/com/kpstv/animatedclock/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/java/com/kpstv/animatedclock/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/java/com/kpstv/animatedclock/MainActivity.kt -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/java/com/kpstv/animatedclock/NumberColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/java/com/kpstv/animatedclock/NumberColumn.kt -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/values/number_column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/values/number_column.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /AnimatedClock-Sample/app/src/test/java/com/kpstv/animatedclock/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/app/src/test/java/com/kpstv/animatedclock/ExampleUnitTest.kt -------------------------------------------------------------------------------- /AnimatedClock-Sample/art/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/art/app-debug.apk -------------------------------------------------------------------------------- /AnimatedClock-Sample/art/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/art/demo.gif -------------------------------------------------------------------------------- /AnimatedClock-Sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/build.gradle -------------------------------------------------------------------------------- /AnimatedClock-Sample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/gradle.properties -------------------------------------------------------------------------------- /AnimatedClock-Sample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimatedClock-Sample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimatedClock-Sample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/gradlew -------------------------------------------------------------------------------- /AnimatedClock-Sample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/AnimatedClock-Sample/gradlew.bat -------------------------------------------------------------------------------- /AnimatedClock-Sample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "AnimatedClock" -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.gitignore -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/.name: -------------------------------------------------------------------------------- 1 | FabReveal -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.idea/compiler.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.idea/gradle.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.idea/misc.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/.idea/vcs.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/README.md -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/build.gradle -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/proguard-rules.pro -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/androidTest/java/com/kpstv/fabreveal/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/androidTest/java/com/kpstv/fabreveal/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/AbstractBottomNavActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/AbstractBottomNavActivity.kt -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/FabReveal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/FabReveal.kt -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/Fragments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/Fragments.kt -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/java/com/kpstv/fabreveal/MainActivity.kt -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_add_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_add_24.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_home_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_home_24.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_playlist_add_check_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_playlist_add_check_24.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_video_library_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_baseline_video_library_24.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/layout/fragment_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/layout/fragment_common.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/layout/fragment_third.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/layout/fragment_third.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/app/src/test/java/com/kpstv/fabreveal/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/app/src/test/java/com/kpstv/fabreveal/ExampleUnitTest.kt -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/art/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/art/app-debug.apk -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/art/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/art/demo.gif -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/build.gradle -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/gradle.properties -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/gradlew -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/FabReveal-Fragment-Transaction/gradlew.bat -------------------------------------------------------------------------------- /FabReveal-Fragment-Transaction/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "FabReveal" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/README.md -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.gitignore -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/.name: -------------------------------------------------------------------------------- 1 | SpringBack-RecyclerView -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.idea/compiler.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.idea/gradle.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.idea/misc.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/.idea/vcs.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/LICENSE -------------------------------------------------------------------------------- /SpringBack-RecyclerView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/README.md -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/build.gradle -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/proguard-rules.pro -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/androidTest/java/com/kpstv/dampingrecyclerview/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/androidTest/java/com/kpstv/dampingrecyclerview/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/data/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/data/Extensions.kt -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/adapters/AnimalsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/adapters/AnimalsAdapter.kt -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/helpers/SpringScrollHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/helpers/SpringScrollHelper.kt -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/screens/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/screens/main/MainActivity.kt -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/screens/main/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/java/com/kpstv/dampingrecyclerview/ui/screens/main/MainViewModel.kt -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/ic_baseline_arrow_back_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/ic_baseline_arrow_back_24.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_african_bush_elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_african_bush_elephant.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_arctic_wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_arctic_wolf.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_black_backed_jackal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_black_backed_jackal.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_black_rhinoceros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_black_rhinoceros.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_blackhowler_monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_blackhowler_monkey.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_bluepoison_dart_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_bluepoison_dart_frog.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_capybara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_capybara.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_chacma_baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_chacma_baboon.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_cheetah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_cheetah.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_chinstrap_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_chinstrap_penguin.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_common_brushtail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_common_brushtail.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_dall_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_dall_sheep.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_eastern_grey_kangaroo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_eastern_grey_kangaroo.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_elk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_elk.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_emperor_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_emperor_penguin.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_ermine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_ermine.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_giant_otter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_giant_otter.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_golden_headed_lion_tamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_golden_headed_lion_tamarin.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_harp_seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_harp_seal.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_hippopo_tamus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_hippopo_tamus.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_jaguar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_jaguar.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_kinkajou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_kinkajou.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_koala.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_leopard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_leopard.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_lion.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_moose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_moose.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_mus_ox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_mus_ox.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_nmorth_white_rhinoceros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_nmorth_white_rhinoceros.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_norway_lemmings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_norway_lemmings.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_ocelot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_ocelot.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_olive_baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_olive_baboon.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_plains_zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_plains_zebra.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_platypus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_platypus.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_polar_bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_polar_bear.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_sea_otter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_sea_otter.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_southern_elephant_seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_southern_elephant_seal.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_spotted_hyaena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_spotted_hyaena.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_tasmanian_devil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_tasmanian_devil.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_two_toed_sloths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_two_toed_sloths.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_vervet_monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_vervet_monkey.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_walrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_walrus.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_weddell_seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_weddell_seal.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/drawable/icon_wombat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/drawable/icon_wombat.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/layout/base_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/layout/base_item.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /SpringBack-RecyclerView/app/src/test/java/com/kpstv/dampingrecyclerview/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/app/src/test/java/com/kpstv/dampingrecyclerview/ExampleUnitTest.kt -------------------------------------------------------------------------------- /SpringBack-RecyclerView/art/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/art/app-debug.apk -------------------------------------------------------------------------------- /SpringBack-RecyclerView/art/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/art/demo.gif -------------------------------------------------------------------------------- /SpringBack-RecyclerView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/build.gradle -------------------------------------------------------------------------------- /SpringBack-RecyclerView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/gradle.properties -------------------------------------------------------------------------------- /SpringBack-RecyclerView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SpringBack-RecyclerView/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SpringBack-RecyclerView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/gradlew -------------------------------------------------------------------------------- /SpringBack-RecyclerView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaustubhPatange/android-animation-samples/HEAD/SpringBack-RecyclerView/gradlew.bat -------------------------------------------------------------------------------- /SpringBack-RecyclerView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "SpringBack-RecyclerView" --------------------------------------------------------------------------------