SensibleRecyclerView
How to
To get a Git project into your build:
Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle
at the end of repositories:
allprojects {
repositories {
//...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.Indisparte:SensibleRecyclerView:0.1.0-alpha'
}
How to use
<com.indisparte.sensiblerecyclerview.SensibleRecyclerView
android:id="@+id/recyclerview"
android:layout_below="@id/toggle_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:emptyIcon="@drawable/ic_empty"
app:emptyText="Oops! Nothing Here"
app:errorIcon="@drawable/ic_error"
app:errorText="Something Just Blew Up!" />