├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE.txt ├── README.md ├── SectionedExpandableGridLayout.iml ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── fivido │ │ └── sectionedexpandablegridlayout │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── fivido │ │ │ └── sectionedexpandablegridlayout │ │ │ ├── MainActivity.java │ │ │ ├── adapters │ │ │ ├── ItemClickListener.java │ │ │ ├── Section.java │ │ │ ├── SectionStateChangeListener.java │ │ │ ├── SectionedExpandableGridAdapter.java │ │ │ └── SectionedExpandableLayoutHelper.java │ │ │ └── models │ │ │ └── Item.java │ └── res │ │ ├── color │ │ ├── default_text_color.xml │ │ └── theme_color.xml │ │ ├── drawable-hdpi │ │ ├── ic_keyboard_arrow_down_black_18dp.png │ │ ├── ic_keyboard_arrow_down_white_24dp.png │ │ ├── ic_keyboard_arrow_up_black_18dp.png │ │ └── ic_keyboard_arrow_up_white_24dp.png │ │ ├── drawable-mdpi │ │ ├── ic_keyboard_arrow_down_black_18dp.png │ │ ├── ic_keyboard_arrow_down_white_24dp.png │ │ ├── ic_keyboard_arrow_up_black_18dp.png │ │ └── ic_keyboard_arrow_up_white_24dp.png │ │ ├── drawable-xhdpi │ │ ├── ic_keyboard_arrow_down_black_18dp.png │ │ ├── ic_keyboard_arrow_down_white_24dp.png │ │ ├── ic_keyboard_arrow_up_black_18dp.png │ │ └── ic_keyboard_arrow_up_white_24dp.png │ │ ├── drawable-xxhdpi │ │ ├── ic_keyboard_arrow_down_black_18dp.png │ │ ├── ic_keyboard_arrow_down_white_24dp.png │ │ ├── ic_keyboard_arrow_up_black_18dp.png │ │ └── ic_keyboard_arrow_up_white_24dp.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_keyboard_arrow_down_black_18dp.png │ │ ├── ic_keyboard_arrow_down_white_24dp.png │ │ ├── ic_keyboard_arrow_up_black_18dp.png │ │ └── ic_keyboard_arrow_up_white_24dp.png │ │ ├── drawable │ │ ├── selector_section_toggle.xml │ │ └── theme_color.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── layout_item.xml │ │ └── layout_section.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 │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── fivido │ └── sectionedexpandablegridlayout │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── segrv.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | SectionedExpandableGridLayout -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /SectionedExpandableGridLayout.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/SectionedExpandableGridLayout.iml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/fivido/sectionedexpandablegridlayout/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/androidTest/java/com/fivido/sectionedexpandablegridlayout/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/fivido/sectionedexpandablegridlayout/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/java/com/fivido/sectionedexpandablegridlayout/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/ItemClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/ItemClickListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/Section.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/Section.java -------------------------------------------------------------------------------- /app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/SectionStateChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/SectionStateChangeListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/SectionedExpandableGridAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/SectionedExpandableGridAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/SectionedExpandableLayoutHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/java/com/fivido/sectionedexpandablegridlayout/adapters/SectionedExpandableLayoutHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/fivido/sectionedexpandablegridlayout/models/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/java/com/fivido/sectionedexpandablegridlayout/models/Item.java -------------------------------------------------------------------------------- /app/src/main/res/color/default_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/color/default_text_color.xml -------------------------------------------------------------------------------- /app/src/main/res/color/theme_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/color/theme_color.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_section_toggle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable/selector_section_toggle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/theme_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/drawable/theme_color.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/layout/layout_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/layout/layout_section.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/fivido/sectionedexpandablegridlayout/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/app/src/test/java/com/fivido/sectionedexpandablegridlayout/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /segrv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpncool/SectionedExpandableGridRecyclerView/HEAD/segrv.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------