Skip to content
Anonymous edited this page Jan 4, 2016 · 10 revisions

Fully functional RecyclerView without making an Adapter.

Welcome to the Snap-RecyclerView-Utils wiki!

Snap RecyclerView Utils is a simple library to create RecyclerView Adapters and ViewHolder in a snap.

Welcome to the Snap-RecyclerView-Utils wiki!

Android Arsenal Travis CI

Simple Library to create RecyclerView Adapters and Viewholder in a snap.

Features

  • Simple RecyclerView Adapter
  • Multiple Layouts RecyclerView Adapter
  • Endless Loader
  • Alternate View Support
  • Automatic Empty RecyclerView Layout Handling

Add to your project

Release

Add JitPack to repositories in your project's root build.gradle file:

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

Add the dependency to your module's build.gradle file:

dependencies {
	...
    compile 'com.github.prashantsolanki3:Snap-RecyclerView-Utils:v1.7'
}

Usage