├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── patrickiv │ │ └── demo │ │ └── enteranimationdemo │ │ ├── MainActivity.kt │ │ ├── fragment │ │ ├── GridDemoFragment.kt │ │ └── ListDemoFragment.kt │ │ ├── model │ │ └── Model.kt │ │ └── recyclerview │ │ ├── CardAdapter.kt │ │ └── GridRecyclerView.kt │ └── res │ ├── anim │ ├── grid_layout_animation_from_bottom.xml │ ├── grid_layout_animation_scale.xml │ ├── grid_layout_animation_scale_random.xml │ ├── item_animation_fall_down.xml │ ├── item_animation_from_bottom.xml │ ├── item_animation_from_right.xml │ ├── item_animation_scale.xml │ ├── layout_animation_fall_down.xml │ ├── layout_animation_from_bottom.xml │ └── layout_animation_from_right.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ ├── fragment_grid.xml │ ├── fragment_list.xml │ ├── include_toolbar.xml │ ├── row_empty_card.xml │ ├── row_header.xml │ └── row_spinner_item.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── integers.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/patrickiv/demo/enteranimationdemo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/java/com/patrickiv/demo/enteranimationdemo/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patrickiv/demo/enteranimationdemo/fragment/GridDemoFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/java/com/patrickiv/demo/enteranimationdemo/fragment/GridDemoFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patrickiv/demo/enteranimationdemo/fragment/ListDemoFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/java/com/patrickiv/demo/enteranimationdemo/fragment/ListDemoFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patrickiv/demo/enteranimationdemo/model/Model.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/java/com/patrickiv/demo/enteranimationdemo/model/Model.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patrickiv/demo/enteranimationdemo/recyclerview/CardAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/java/com/patrickiv/demo/enteranimationdemo/recyclerview/CardAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patrickiv/demo/enteranimationdemo/recyclerview/GridRecyclerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/java/com/patrickiv/demo/enteranimationdemo/recyclerview/GridRecyclerView.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/grid_layout_animation_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/grid_layout_animation_from_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/grid_layout_animation_scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/grid_layout_animation_scale.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/grid_layout_animation_scale_random.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/grid_layout_animation_scale_random.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/item_animation_fall_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/item_animation_fall_down.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/item_animation_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/item_animation_from_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/item_animation_from_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/item_animation_from_right.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/item_animation_scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/item_animation_scale.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/layout_animation_fall_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/layout_animation_fall_down.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/layout_animation_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/layout_animation_from_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/layout_animation_from_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/anim/layout_animation_from_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/layout/fragment_grid.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/layout/fragment_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/include_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/layout/include_toolbar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_empty_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/layout/row_empty_card.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/layout/row_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/layout/row_spinner_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-elmquist/Demo-RecyclerViewEnterAnimation/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------