Skip to content

Getting Started

Installation

Add the following lines of code into your build.gradle.

dependencies {
    implementation ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:[VERSION_CODE_GOES_HERE]@aar'){
        transitive=true
    }
}

NOTE: This library is served on jCenter. If the above gradle setting not getting work, try adding the following lines.

repositories {
    jcenter()
}

What's next?

First, I recommend you to learn about plain RecyclerView. Basic knowledges about RecyclerView are required before using this library. The following tutorial is good for starting point;

If you've already know well about plain RecyclerView, proceed to each sections written about what you want to use:

Other references