yogeshpaliyal / Android-Universal-Recycler-View-Adapter

The Ultimate Adapter for Recycler View. One Adapter for all your needs

Home Page:https://yogeshpaliyal.com/universal-recycler-adapter-for-90-of-your-needs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Maven metadata URL

GitHub issues GitHub forks GitHub stars GitHub license Twitter

Android Universal Recycler Adapter

Tired of creating 100s of Adapters and View Models. This Library will make it easy, No need to create a Adapter, ViewHolder for every list

Cover Image

🤔 How?

Using Resource Pattern to find the status of the list and show view types according to that.

Step #1. Add the mavenCentral() to your root buuld.gradle:

allprojects {
    repositories {
	...
    	mavenCentral()
    }
}

2. Add Dependency repository to your build file:

Maven metadata URL

dependencies {
    implementation 'com.yogeshpaliyal:universal-adapter:3.0.0'
}

🛠️ Used in this Project

🤩 Features

  • Content Listing (Supports Multiple View Types)
  • Loading + Listing (Showing shimmer items for Loading then showing the actual Listing)
  • Loading + LoadMore (Showing loading items and add a item at bottom to create infinite Listing)
  • No Data Found
  • Error Page
  • Async DiffUtils for better performance

When to show which item?

Status List Size Result Behaviour
LOADING 0 Show Loading Cells (default 5 items)
SUCCESS 0 No Record Found Layout will be displayed
ERROR 0 Error Layout Shown
LOADING more than 0 Data Cells + load more at end
SUCCESS more than 0 Data Cells
ERROR more than 0 Data Cells + error cell at end

📚 For more info Check Wiki

General

Examples

Feedback

Having any issue to get you are looking for, feel free to put your question in Discussion Section and help us Improving this library and Documentation.

Happy Coding 😁

MIT License

Copyright (c) 2021 Yogesh Choudhary Paliyal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

The Ultimate Adapter for Recycler View. One Adapter for all your needs

https://yogeshpaliyal.com/universal-recycler-adapter-for-90-of-your-needs

License:MIT License


Languages

Language:Kotlin 100.0%