Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maurycyw/HeaderGridView

A GridView with the ability to have multiple headers
https://github.com/maurycyw/HeaderGridView

Last synced: about 2 months ago
JSON representation

A GridView with the ability to have multiple headers

Awesome Lists containing this project

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