├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── bintray.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images └── sample.gif ├── install.gradle ├── lint.xml ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── codewaves │ │ └── stickyheadergrid │ │ └── sample │ │ ├── SampleActivity.java │ │ └── SampleAdapter.java │ └── res │ ├── drawable │ └── header_shadow.xml │ ├── layout │ ├── activity_sample.xml │ ├── cell_header.xml │ └── cell_item.xml │ ├── menu │ └── main.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 └── stickyheadergrid ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── codewaves │ └── stickyheadergrid │ ├── StickyHeaderGridAdapter.java │ └── StickyHeaderGridLayoutManager.java └── res └── values └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/README.md -------------------------------------------------------------------------------- /bintray.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/bintray.gradle -------------------------------------------------------------------------------- /dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/dependencies.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/images/sample.gif -------------------------------------------------------------------------------- /install.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/install.gradle -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/lint.xml -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/codewaves/stickyheadergrid/sample/SampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/java/com/codewaves/stickyheadergrid/sample/SampleActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/codewaves/stickyheadergrid/sample/SampleAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/java/com/codewaves/stickyheadergrid/sample/SampleAdapter.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable/header_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/drawable/header_shadow.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/layout/activity_sample.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/cell_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/layout/cell_header.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/cell_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/layout/cell_item.xml -------------------------------------------------------------------------------- /sample/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/settings.gradle -------------------------------------------------------------------------------- /stickyheadergrid/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /stickyheadergrid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/stickyheadergrid/build.gradle -------------------------------------------------------------------------------- /stickyheadergrid/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/stickyheadergrid/proguard-rules.pro -------------------------------------------------------------------------------- /stickyheadergrid/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stickyheadergrid/src/main/java/com/codewaves/stickyheadergrid/StickyHeaderGridAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/stickyheadergrid/src/main/java/com/codewaves/stickyheadergrid/StickyHeaderGridAdapter.java -------------------------------------------------------------------------------- /stickyheadergrid/src/main/java/com/codewaves/stickyheadergrid/StickyHeaderGridLayoutManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/stickyheadergrid/src/main/java/com/codewaves/stickyheadergrid/StickyHeaderGridLayoutManager.java -------------------------------------------------------------------------------- /stickyheadergrid/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codewaves/Sticky-Header-Grid/HEAD/stickyheadergrid/src/main/res/values/strings.xml --------------------------------------------------------------------------------