# BRV **Repository Path**: docname/BRV ## Basic Information - **Project Name**: BRV - **Description**: https://gitee.com/docname/BRV/settings - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://gitee.com/docname/BRV - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-01 - **Last Updated**: 2023-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

中文 | English

1600

可能是最强大的RecyclerView框架

使用文档 | 无法访问? | 贡献代码 | 下载体验


BRV为快速构建RV列表工具, 以开源分享来完善, 将一直保持社区维护 Welcome to international translation of this project's documents/notes, thank you for your support!

欢迎贡献代码/问题


- [x] 开发效率No.1 - [x] 永远保持社区维护 - [x] 低代码/高扩展性 - [x] 优秀的源码/注释/文档/示例
## 功能 - [x] 快速创建多类型列表 - [x] 一对一/一对多创建多类型 - [x] 添加头布局和脚布局 - [x] 点击(防抖动)/长按事件 - [x] 分组(展开折叠/递归层次/展开置顶/拖拽/侧滑/多类型/单一展开模式) - [x] 悬停/粘性头部 - [x] 快速创建分隔线/间隔 - [x] 切换模式(例如切换编辑模式) - [x] 选择模式(多选/单选/全选/取消全选/反选) - [x] 拖拽排序 - [x] 侧滑删除 - [x] 下拉刷新(Refresh) | 上拉加载(LoadMore) | 下拉加载(UpFetch), 由[SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout)实现 - [x] 预加载(Preload) - [x] 对比数据更新(Diffs) - [x] 自动分页加载数据 - [x] 列表动画/骨骼图动画 - [x] 列表缺省页, 由[StateLayout](https://github.com/liangjingkanji/StateLayout)实现 - [x] 支持DataBinding - [x] 支持ViewBinding - [x] 可添加[FlexboxLayoutManager](https://github.com/google/flexbox-layout)实现伸缩列表自动换行 - [x] 可添加[Net](https://github.com/liangjingkanji/Net)(强大的协程网络请求)实现自动化网络请求 ## 安装 Project 的 settings.gradle 添加仓库 ```kotlin dependencyResolutionManagement { repositories { // ... maven { url 'https://jitpack.io' } } } ``` Module 的 build.gradle 添加依赖框架 ```groovy dependencies { implementation 'com.github.liangjingkanji:BRV:1.5.1' } ``` ## License ``` MIT License Copyright (c) 2023 劉強東 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. ```