Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maurycyw/HeaderGridView
A GridView with the ability to have multiple headers
https://github.com/maurycyw/HeaderGridView
Last synced: 2 months ago
JSON representation
A GridView with the ability to have multiple headers
- Host: GitHub
- URL: https://github.com/maurycyw/HeaderGridView
- Owner: maurycyw
- Created: 2013-04-09T23:49:48.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-08T23:54:42.000Z (about 11 years ago)
- Last Synced: 2024-08-01T22:43:02.348Z (5 months ago)
- Language: Java
- Size: 505 KB
- Stars: 68
- Watchers: 10
- Forks: 29
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- android-awesome-libraries - HeaderGridView - Header view support for GridView! (Uncategorized / Uncategorized)
README
HeaderGridView
=======## Introduction
This is an updated version of GridView which allows for Headers. The Headers themselves are not part of the adapter / data source. This means that the headers only are not being recycled.
## Setup
To use HeaderGridView in your projects, simply add this project to your workspace then add it as a library project to your current project.
## Usage
HeaderGridView can be added as a custom view to any layout.
instead of ``` ``` use…
```xml
```
then simply add header views via
```xml
// same methods as ListView
addHeaderView(View v, Object data, boolean isSelectable);
addHeaderView(View v);
```## Tests
None.
## TODO:
* implement Footer support. should be simple
* develop tests