├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── dictionaries │ └── tufu.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── tufu │ │ └── recyclervieweffectgather │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── tufu │ │ │ └── recyclervieweffectgather │ │ │ ├── ColorPanel.java │ │ │ ├── MainActivity.java │ │ │ ├── RecyclerViewAdapter.java │ │ │ ├── TopGradualFragment.java │ │ │ └── dummy │ │ │ └── DummyContent.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── color_view_panel_layout.xml │ │ ├── content_main.xml │ │ ├── fragment_item.xml │ │ └── fragment_item_list.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── tufu │ └── recyclervieweffectgather │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | RecyclerViewEffectGather -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/tufu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/dictionaries/tufu.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/tufu/recyclervieweffectgather/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/androidTest/java/tufu/recyclervieweffectgather/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/tufu/recyclervieweffectgather/ColorPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/java/tufu/recyclervieweffectgather/ColorPanel.java -------------------------------------------------------------------------------- /app/src/main/java/tufu/recyclervieweffectgather/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/java/tufu/recyclervieweffectgather/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/tufu/recyclervieweffectgather/RecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/java/tufu/recyclervieweffectgather/RecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/tufu/recyclervieweffectgather/TopGradualFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/java/tufu/recyclervieweffectgather/TopGradualFragment.java -------------------------------------------------------------------------------- /app/src/main/java/tufu/recyclervieweffectgather/dummy/DummyContent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/java/tufu/recyclervieweffectgather/dummy/DummyContent.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/color_view_panel_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/layout/color_view_panel_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/layout/fragment_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_item_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/layout/fragment_item_list.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/tufu/recyclervieweffectgather/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/app/src/test/java/tufu/recyclervieweffectgather/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonLin/RecyclerViewEffectGather/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------