├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cruxlab │ │ └── sectionedrecyclerview │ │ └── demo │ │ ├── DemoSwipeCallback.java │ │ ├── MainActivity.java │ │ ├── adapters │ │ ├── BaseAdapter.java │ │ ├── DefaultAdapter.java │ │ ├── HeaderlessAdapter.java │ │ ├── SimpleAdapter.java │ │ └── SmartAdapter.java │ │ └── view_holders │ │ ├── HeaderVH.java │ │ ├── ItemVH.java │ │ ├── SimpleItemVH.java │ │ └── SmartHeaderVH.java │ └── res │ ├── drawable │ ├── ic_change.xml │ ├── ic_duplicate.xml │ ├── ic_eye.xml │ ├── ic_launcher_background.xml │ ├── ic_lock.xml │ ├── ic_lock_open.xml │ ├── ic_remove.xml │ ├── ic_visibility.xml │ └── ic_visibility_off.xml │ ├── layout │ ├── activity_main.xml │ ├── default_header_vh.xml │ ├── item_vh.xml │ ├── simple_header_vh.xml │ ├── simple_item_vh.xml │ └── smart_header_vh.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── demo.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── sectionedrecyclerview ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── cruxlab │ └── sectionedrecyclerview │ └── lib │ ├── BaseSectionAdapter.java │ ├── HeaderPosProvider.java │ ├── HeaderViewManager.java │ ├── PositionManager.java │ ├── SectionAdapter.java │ ├── SectionAdapterWrapper.java │ ├── SectionDataManager.java │ ├── SectionHeaderLayout.java │ ├── SectionItemManager.java │ ├── SectionItemSwipeCallback.java │ ├── SectionManager.java │ ├── SimpleSectionAdapter.java │ └── ViewHolderWrapper.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/DemoSwipeCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/DemoSwipeCallback.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/BaseAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/BaseAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/DefaultAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/DefaultAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/HeaderlessAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/HeaderlessAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/SimpleAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/SimpleAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/SmartAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/adapters/SmartAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/HeaderVH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/HeaderVH.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/ItemVH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/ItemVH.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/SimpleItemVH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/SimpleItemVH.java -------------------------------------------------------------------------------- /app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/SmartHeaderVH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/java/com/cruxlab/sectionedrecyclerview/demo/view_holders/SmartHeaderVH.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_change.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_change.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_duplicate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_duplicate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_eye.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lock_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_lock_open.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_remove.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_visibility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_visibility.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_visibility_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/drawable/ic_visibility_off.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/default_header_vh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/layout/default_header_vh.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_vh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/layout/item_vh.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/simple_header_vh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/layout/simple_header_vh.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/simple_item_vh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/layout/simple_item_vh.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/smart_header_vh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/layout/smart_header_vh.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/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/crux-lab/sectioned-recycler-view/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/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/demo.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/gradlew.bat -------------------------------------------------------------------------------- /sectionedrecyclerview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sectionedrecyclerview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/build.gradle -------------------------------------------------------------------------------- /sectionedrecyclerview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/proguard-rules.pro -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/BaseSectionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/BaseSectionAdapter.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/HeaderPosProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/HeaderPosProvider.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/HeaderViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/HeaderViewManager.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/PositionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/PositionManager.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionAdapter.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionAdapterWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionAdapterWrapper.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionDataManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionDataManager.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionHeaderLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionHeaderLayout.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionItemManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionItemManager.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionItemSwipeCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionItemSwipeCallback.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SectionManager.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SimpleSectionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/SimpleSectionAdapter.java -------------------------------------------------------------------------------- /sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/ViewHolderWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crux-lab/sectioned-recycler-view/HEAD/sectionedrecyclerview/src/main/java/com/cruxlab/sectionedrecyclerview/lib/ViewHolderWrapper.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':sectionedrecyclerview' 2 | --------------------------------------------------------------------------------