├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── SectionedRecyclerView.iml ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── truizlop │ │ └── sectionedrecyclerviewsample │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── truizlop │ │ └── sectionedrecyclerviewsample │ │ ├── AgendaSimpleSectionAdapter.java │ │ ├── CountSectionAdapter.java │ │ ├── MainActivity.java │ │ └── viewholders │ │ ├── AgendaItemViewHolder.java │ │ ├── CountFooterViewHolder.java │ │ ├── CountHeaderViewHolder.java │ │ └── CountItemViewHolder.java │ └── res │ ├── layout │ ├── activity_main.xml │ ├── view_agenda_item.xml │ ├── view_count_footer.xml │ ├── view_count_header.xml │ └── view_count_item.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── art ├── screenshot1.png └── screenshot2.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── library.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── truizlop │ │ └── sectionedrecyclerview │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── truizlop │ │ └── sectionedrecyclerview │ │ ├── HeaderViewHolder.java │ │ ├── SectionedRecyclerViewAdapter.java │ │ ├── SectionedSpanSizeLookup.java │ │ └── SimpleSectionedAdapter.java │ └── res │ ├── layout │ └── view_header.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ └── strings.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | SectionedRecyclerView -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /SectionedRecyclerView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/SectionedRecyclerView.iml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/truizlop/sectionedrecyclerviewsample/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/androidTest/java/com/truizlop/sectionedrecyclerviewsample/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/truizlop/sectionedrecyclerviewsample/AgendaSimpleSectionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/java/com/truizlop/sectionedrecyclerviewsample/AgendaSimpleSectionAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/truizlop/sectionedrecyclerviewsample/CountSectionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/java/com/truizlop/sectionedrecyclerviewsample/CountSectionAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/truizlop/sectionedrecyclerviewsample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/java/com/truizlop/sectionedrecyclerviewsample/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/AgendaItemViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/AgendaItemViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/CountFooterViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/CountFooterViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/CountHeaderViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/CountHeaderViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/CountItemViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/java/com/truizlop/sectionedrecyclerviewsample/viewholders/CountItemViewHolder.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_agenda_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/layout/view_agenda_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_count_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/layout/view_count_footer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_count_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/layout/view_count_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_count_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/layout/view_count_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /art/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/art/screenshot1.png -------------------------------------------------------------------------------- /art/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/art/screenshot2.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/library.iml -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/truizlop/sectionedrecyclerview/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/androidTest/java/com/truizlop/sectionedrecyclerview/ApplicationTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/truizlop/sectionedrecyclerview/HeaderViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/java/com/truizlop/sectionedrecyclerview/HeaderViewHolder.java -------------------------------------------------------------------------------- /library/src/main/java/com/truizlop/sectionedrecyclerview/SectionedRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/java/com/truizlop/sectionedrecyclerview/SectionedRecyclerViewAdapter.java -------------------------------------------------------------------------------- /library/src/main/java/com/truizlop/sectionedrecyclerview/SectionedSpanSizeLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/java/com/truizlop/sectionedrecyclerview/SectionedSpanSizeLookup.java -------------------------------------------------------------------------------- /library/src/main/java/com/truizlop/sectionedrecyclerview/SimpleSectionedAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/java/com/truizlop/sectionedrecyclerview/SimpleSectionedAdapter.java -------------------------------------------------------------------------------- /library/src/main/res/layout/view_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/res/layout/view_header.xml -------------------------------------------------------------------------------- /library/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /library/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truizlop/SectionedRecyclerView/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------