├── .gitignore ├── HeaderAndFooterRecyclerView.iml ├── LICENSE ├── README.md ├── README_CN.md ├── art ├── art1.png ├── art2.png ├── art3.png ├── art4.png └── art5.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── library.iml ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cundong │ │ └── recyclerview │ │ ├── EndlessRecyclerOnScrollListener.java │ │ ├── ExStaggeredGridLayoutManager.java │ │ ├── HeaderAndFooterRecyclerViewAdapter.java │ │ ├── HeaderSpanSizeLookup.java │ │ ├── OnListLoadNextPageListener.java │ │ └── RecyclerViewUtils.java │ └── res │ └── values │ └── strings.xml ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── sample.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cundong │ │ └── recyclerview │ │ └── sample │ │ ├── LinearLayoutActivity.java │ │ └── weight │ │ ├── SampleFooter.java │ │ └── SampleHeader.java │ └── res │ ├── layout │ ├── sample_activity.xml │ ├── sample_footer.xml │ ├── sample_header.xml │ └── sample_item_text.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── samplePlus ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cundong │ │ └── recyclerview │ │ └── sample │ │ ├── EndlessGridLayoutActivity.java │ │ ├── EndlessLinearLayoutActivity.java │ │ ├── EndlessStaggeredGridLayoutActivity.java │ │ ├── ItemModel.java │ │ ├── LinearLayoutActivity.java │ │ ├── MainActivity.java │ │ ├── utils │ │ ├── NetworkUtils.java │ │ └── RecyclerViewStateUtils.java │ │ └── weight │ │ ├── LoadingFooter.java │ │ ├── SampleFooter.java │ │ └── SampleHeader.java │ └── res │ ├── drawable-xhdpi │ ├── sample_footer_error.png │ ├── sample_footer_loading.png │ └── test.9.png │ ├── drawable │ └── sample_footer_loading_progress.xml │ ├── layout │ ├── sample_activity.xml │ ├── sample_common_list_footer.xml │ ├── sample_common_list_footer_end.xml │ ├── sample_common_list_footer_loading.xml │ ├── sample_common_list_footer_network_error.xml │ ├── sample_footer.xml │ ├── sample_header.xml │ ├── sample_item_button.xml │ ├── sample_item_card.xml │ └── sample_item_text.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /HeaderAndFooterRecyclerView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/HeaderAndFooterRecyclerView.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/README_CN.md -------------------------------------------------------------------------------- /art/art1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/art/art1.png -------------------------------------------------------------------------------- /art/art2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/art/art2.png -------------------------------------------------------------------------------- /art/art3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/art/art3.png -------------------------------------------------------------------------------- /art/art4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/art/art4.png -------------------------------------------------------------------------------- /art/art5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/art/art5.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/library.iml -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/cundong/recyclerview/EndlessRecyclerOnScrollListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/java/com/cundong/recyclerview/EndlessRecyclerOnScrollListener.java -------------------------------------------------------------------------------- /library/src/main/java/com/cundong/recyclerview/ExStaggeredGridLayoutManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/java/com/cundong/recyclerview/ExStaggeredGridLayoutManager.java -------------------------------------------------------------------------------- /library/src/main/java/com/cundong/recyclerview/HeaderAndFooterRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/java/com/cundong/recyclerview/HeaderAndFooterRecyclerViewAdapter.java -------------------------------------------------------------------------------- /library/src/main/java/com/cundong/recyclerview/HeaderSpanSizeLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/java/com/cundong/recyclerview/HeaderSpanSizeLookup.java -------------------------------------------------------------------------------- /library/src/main/java/com/cundong/recyclerview/OnListLoadNextPageListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/java/com/cundong/recyclerview/OnListLoadNextPageListener.java -------------------------------------------------------------------------------- /library/src/main/java/com/cundong/recyclerview/RecyclerViewUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/java/com/cundong/recyclerview/RecyclerViewUtils.java -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/sample.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/sample.iml -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/cundong/recyclerview/sample/LinearLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/java/com/cundong/recyclerview/sample/LinearLayoutActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/cundong/recyclerview/sample/weight/SampleFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/java/com/cundong/recyclerview/sample/weight/SampleFooter.java -------------------------------------------------------------------------------- /sample/src/main/java/com/cundong/recyclerview/sample/weight/SampleHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/java/com/cundong/recyclerview/sample/weight/SampleHeader.java -------------------------------------------------------------------------------- /sample/src/main/res/layout/sample_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/layout/sample_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/sample_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/layout/sample_footer.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/sample_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/layout/sample_header.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/sample_item_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/layout/sample_item_text.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /samplePlus/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /samplePlus/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/build.gradle -------------------------------------------------------------------------------- /samplePlus/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/proguard-rules.pro -------------------------------------------------------------------------------- /samplePlus/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/EndlessGridLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/EndlessGridLayoutActivity.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/EndlessLinearLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/EndlessLinearLayoutActivity.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/EndlessStaggeredGridLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/EndlessStaggeredGridLayoutActivity.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/ItemModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/ItemModel.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/LinearLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/LinearLayoutActivity.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/MainActivity.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/utils/NetworkUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/utils/NetworkUtils.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/utils/RecyclerViewStateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/utils/RecyclerViewStateUtils.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/weight/LoadingFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/weight/LoadingFooter.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/weight/SampleFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/weight/SampleFooter.java -------------------------------------------------------------------------------- /samplePlus/src/main/java/com/cundong/recyclerview/sample/weight/SampleHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/java/com/cundong/recyclerview/sample/weight/SampleHeader.java -------------------------------------------------------------------------------- /samplePlus/src/main/res/drawable-xhdpi/sample_footer_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/drawable-xhdpi/sample_footer_error.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/drawable-xhdpi/sample_footer_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/drawable-xhdpi/sample_footer_loading.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/drawable-xhdpi/test.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/drawable-xhdpi/test.9.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/drawable/sample_footer_loading_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/drawable/sample_footer_loading_progress.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_activity.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_common_list_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_common_list_footer.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_common_list_footer_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_common_list_footer_end.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_common_list_footer_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_common_list_footer_loading.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_common_list_footer_network_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_common_list_footer_network_error.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_footer.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_header.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_item_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_item_button.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_item_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_item_card.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/layout/sample_item_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/layout/sample_item_text.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samplePlus/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /samplePlus/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/samplePlus/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cundong/HeaderAndFooterRecyclerView/HEAD/settings.gradle --------------------------------------------------------------------------------