Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carguo/lazyrecycleradapter
极简通用的RecyclerAdapter,入侵性低,支持一个列表多种Item类型,无需维护和编写Adapter代码,快速集成拥有点击,动画,自定义刷新,自定义加载更多,自定义空页面显示,通用分割线,动态绑定等高复用,你只需要编写维护Holder代码。
https://github.com/carguo/lazyrecycleradapter
baserecyclerviewadapterhelper kotlin multitype recyclerview xrecycler
Last synced: 7 days ago
JSON representation
极简通用的RecyclerAdapter,入侵性低,支持一个列表多种Item类型,无需维护和编写Adapter代码,快速集成拥有点击,动画,自定义刷新,自定义加载更多,自定义空页面显示,通用分割线,动态绑定等高复用,你只需要编写维护Holder代码。
- Host: GitHub
- URL: https://github.com/carguo/lazyrecycleradapter
- Owner: CarGuo
- License: mit
- Created: 2016-11-23T14:47:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-12-31T07:38:42.000Z (almost 5 years ago)
- Last Synced: 2024-10-22T22:53:48.669Z (16 days ago)
- Topics: baserecyclerviewadapterhelper, kotlin, multitype, recyclerview, xrecycler
- Language: Java
- Homepage: https://github.com/CarGuo/LazyRecyclerAdapter
- Size: 14.3 MB
- Stars: 267
- Watchers: 11
- Forks: 63
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](https://github.com/CarGuo/LazyRecyclerAdapter/blob/master/33.png)
### 这个一个极简的通用RecyclerView的Adapter,入侵性低,一个Adapter解决日常开发中常用的各种功能,你无需再写任何Adapter代码,让你普通的RecyclerView变得灵活、解耦、通用、丰富起来吧。
[![](https://jitpack.io/v/CarGuo/LazyRecyclerAdapter.svg)](https://jitpack.io/#CarGuo/LazyRecyclerAdapter)
[![Build Status](https://travis-ci.org/CarGuo/LazyRecyclerAdapter.svg?branch=master)](https://travis-ci.org/CarGuo/LazyRecyclerAdapter)## 一、功能
状态 | 功能
-------- | ---
**支持**|**系统RecyclerView和任意数据实体**
**支持**|**动态加载各种Item类型的列表、瀑布流、网格**
**支持**|**列表、瀑布流、网格的刷新和加载更多效果,支持上下左右各个方向**
**支持**|**自定义刷新和加载效果**
**支持**|**内置支持各种列表和方向的万能分割线**
**支持**|**点击和长按效果**
**支持**|**空页面**
**支持**|**Item的动画效果**
**支持**|**Header头支持**
**支持**|**一种数据实体对应多种Item**
**支持**|**侧滑、拖拽**
**支持**|**快速实现聊天模式(DEMO包含Dagger2、MVP、RxJava2、Realm、键盘弹出优化处理)**
**支持**|**Kotlin与Kotlin Demo(Dagger2、MVP、RxJava2、(Realm、Room))**
待支持|内置更多自定义Manager## 二、依赖
### 在你的项目project下的build.gradle添加
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
### 在module下的build.gradle添加依赖
```
dependencies {
compile 'com.github.CarGuo.LazyRecyclerAdapter:CommonRecycler:v4.0.0'
}```
### (Kotlin)在module下的build.gradle添加依赖
```
dependencies {
compile 'com.github.CarGuo.LazyRecyclerAdapter:CommonRecycler-Kotlin:v4.0.0'
}```
![公众号](http://img.cdn.guoshuyu.cn/WeChat-Code)
## 三、效果
#### 更多效果请看DEMO
#### 聊天DEMO中包含Dagger2、MVP、RxJava2、Realm、Factory模式、键盘弹出优化处理。
## 四、使用方法
#### 1、创建管理器
管理器绑定数据、布局、Holder。其中XXXHolder需要继承BindRecyclerBaseHolder。
(BindRecyclerBaseHolder是一个继承了RecyclerView.ViewHolder的基类。)
```
//创建管理器
BindSuperAdapterManager normalAdapterManager = new BindSuperAdapterManager();
//将数据Model类、布局layoutId、RecyclerView.ViewHolder绑定
normalAdapterManager
.bind(BindImageModel.class, R.layout.horizontal_image_item, BindImageHolder.class)
.bind(BindTextModel.class, R.layout.horizontal_text_item, BindTextHolder.class)
.bind(BindClickModel.class, R.layout.horizontal_click_item, BindClickHolder.class)
.bindEmpty(BindNoDataHolder.NoDataModel.class, BindNoDataHolder.ID, BindNoDataHolder.class)
```#### 2、创建Adapter,设置RecyclerView
```
//通过管理器构建Adapter
BindSuperAdapter adapter = new BindSuperAdapter(context, normalAdapterManager, datas);recycler.setLayoutManager(staggeredGridLayoutManager);
recycler.setAdapter(adapter);```
#### 更多高级用法请看Demo与[wiki 文档](https://github.com/CarGuo/LazyRecyclerAdapter/wiki)。
## License
本项目把XRecyclerView的部分功能拆解到Adapter。
```
MIT
```