Skip to content

filipkowicz/HeaderItemDecorationExample

Folders and files

NameName
Last commit message
Last commit date
Dec 27, 2019
Nov 18, 2019
Dec 27, 2019
Dec 22, 2019
Dec 27, 2019
Nov 18, 2019
Dec 27, 2019
Dec 23, 2019
Dec 23, 2019
Nov 18, 2019
Nov 18, 2019
Nov 18, 2019
Dec 23, 2019

Repository files navigation

Download

HeaderItemDecorationExample

Simple Example how to use HeaderItemDecoration from gist https://gist.github.com/filipkowicz/1a769001fae407b8813ab4387c42fcbd

Note that this project is simple as possible and do not cover all best practices. Only goal of this project is to show how to integrate HeaderItemDecoration into your projects.

All help welcomed πŸ™ if you have any idea please clone and make PR 😊

have fun and happy coding πŸ˜ƒ

Import

compile 'com.filipkowicz.tools:header-item-decoration:0.8'

How to use

import com.filipkowicz.headeritemdecorator.HeaderItemDecoration

...

recyclerView.addItemDecoration(HeaderItemDecoration(this,
                    shouldFadeOutHeader = true
                ) {
                // example check for header item
                    [email protected](it) == R.layout.header_layout
                })