├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .idea ├── compiler.xml ├── jarRepositories.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── .travis.yml ├── LICENSE.md ├── README.md ├── RELEASES.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── todkars │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── todkars │ │ │ ├── ExampleActivity.java │ │ │ ├── UserRetrievalTask.java │ │ │ ├── adapters │ │ │ ├── UserAdapter.java │ │ │ └── UserViewHolder.java │ │ │ └── model │ │ │ └── User.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── ic_view_list.xml │ │ ├── ic_view_list_disable.xml │ │ ├── ic_view_module.xml │ │ ├── ic_view_module_disable.xml │ │ └── view_toggle.xml │ │ ├── layout │ │ ├── activity_example.xml │ │ ├── list_item_shimmer.xml │ │ ├── list_item_shimmer_alternate.xml │ │ ├── list_item_shimmer_grid.xml │ │ ├── list_item_shimmer_grid_alternate.xml │ │ ├── list_item_user.xml │ │ └── list_item_user_grid.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ └── mock_data.json │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── todkars │ ├── ExampleTestActivity.kt │ └── ExampleUnitTest.kt ├── demo ├── grid-demo.gif ├── list-demo.gif └── list-grid-demo.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── shimmer ├── .gitignore ├── bintray-config.gradle ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── todkars │ └── shimmer │ ├── ShimmerAdapter.java │ ├── ShimmerRecyclerView.java │ └── ShimmerViewHolder.java └── res ├── layout ├── recyclerview_shimmer_item_grid.xml ├── recyclerview_shimmer_item_list.xml └── recyclerview_shimmer_viewholder_layout.xml └── values └── attrs.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/RELEASES.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/todkars/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/androidTest/java/com/todkars/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/todkars/ExampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/java/com/todkars/ExampleActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/todkars/UserRetrievalTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/java/com/todkars/UserRetrievalTask.java -------------------------------------------------------------------------------- /app/src/main/java/com/todkars/adapters/UserAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/java/com/todkars/adapters/UserAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/todkars/adapters/UserViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/java/com/todkars/adapters/UserViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/todkars/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/java/com/todkars/model/User.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_view_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/drawable/ic_view_list.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_view_list_disable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/drawable/ic_view_list_disable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_view_module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/drawable/ic_view_module.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_view_module_disable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/drawable/ic_view_module_disable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/view_toggle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/drawable/view_toggle.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/layout/activity_example.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_shimmer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/layout/list_item_shimmer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_shimmer_alternate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/layout/list_item_shimmer_alternate.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_shimmer_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/layout/list_item_shimmer_grid.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_shimmer_grid_alternate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/layout/list_item_shimmer_grid_alternate.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/layout/list_item_user.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_user_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/layout/list_item_user_grid.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/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/omtodkar/ShimmerRecyclerView/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/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/mock_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/raw/mock_data.json -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/todkars/ExampleTestActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/test/java/com/todkars/ExampleTestActivity.kt -------------------------------------------------------------------------------- /app/src/test/java/com/todkars/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/app/src/test/java/com/todkars/ExampleUnitTest.kt -------------------------------------------------------------------------------- /demo/grid-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/demo/grid-demo.gif -------------------------------------------------------------------------------- /demo/list-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/demo/list-demo.gif -------------------------------------------------------------------------------- /demo/list-grid-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/demo/list-grid-demo.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':shimmer' -------------------------------------------------------------------------------- /shimmer/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /shimmer/bintray-config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/bintray-config.gradle -------------------------------------------------------------------------------- /shimmer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/build.gradle -------------------------------------------------------------------------------- /shimmer/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/proguard-rules.pro -------------------------------------------------------------------------------- /shimmer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /shimmer/src/main/java/com/todkars/shimmer/ShimmerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/java/com/todkars/shimmer/ShimmerAdapter.java -------------------------------------------------------------------------------- /shimmer/src/main/java/com/todkars/shimmer/ShimmerRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/java/com/todkars/shimmer/ShimmerRecyclerView.java -------------------------------------------------------------------------------- /shimmer/src/main/java/com/todkars/shimmer/ShimmerViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/java/com/todkars/shimmer/ShimmerViewHolder.java -------------------------------------------------------------------------------- /shimmer/src/main/res/layout/recyclerview_shimmer_item_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/res/layout/recyclerview_shimmer_item_grid.xml -------------------------------------------------------------------------------- /shimmer/src/main/res/layout/recyclerview_shimmer_item_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/res/layout/recyclerview_shimmer_item_list.xml -------------------------------------------------------------------------------- /shimmer/src/main/res/layout/recyclerview_shimmer_viewholder_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/res/layout/recyclerview_shimmer_viewholder_layout.xml -------------------------------------------------------------------------------- /shimmer/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omtodkar/ShimmerRecyclerView/HEAD/shimmer/src/main/res/values/attrs.xml --------------------------------------------------------------------------------