# BRV **Repository Path**: lomasky/BRV ## Basic Information - **Project Name**: BRV - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-03-30 - **Last Updated**: 2025-02-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

中文 | English

1600

Probably the most powerful RecyclerView framework

Documentation | Can't Access? | Contribute Code | Download Demo App


BRV is a tool for quickly building an RV list, perfected by open source sharing, and will always be maintained by the community

Contribute Code / Report Issues


- [x] Development efficiency No.1 - [x] Maintained by the community forever - [x] Low code/high extensibility - [x] Excellent source code/comments/documentation/examples
## Features - [x] Quickly create multi-type lists - [x] One-to-one/one-to-many multi-type creation - [x] Add header and footer views - [x] Click (debounce)/long press events - [x] Grouping (expand/collapse/recursively/nested/expand and stick/top/ drag and swipe/multi-type/single expand mode) - [x] Sticky header - [x] Quickly create dividers/spaces - [x] Switch mode (e.g., switch to edit mode) - [x] Selection mode (multi-select/single-select/select all/deselect all/invert selection) - [x] Drag and drop sorting - [x] Swipe to delete - [x] Pull-down refresh (Refresh) | Pull-up load more (LoadMore) | Pull-down load more (UpFetch), implemented by [SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) - [x] Preload - [x] Data update with diffing - [x] Automatic pagination loading - [x] List animation/skeleton animation - [x] List empty state, implemented by [StateLayout](https://github.com/liangjingkanji/StateLayout) - [x] Support DataBinding - [x] Support ViewBinding - [x] Add [FlexboxLayoutManager](https://github.com/google/flexbox-layout) to automatically wrap flexbox layout - [x] Add [Net](https://github.com/liangjingkanji/Net) (powerful coroutine network request) to automate network requests ## Installation Add the remote repository to the root build.gradle file ```groovy dependencyResolutionManagement { repositories { // ... maven { url 'https://jitpack.io' } } } ``` Then, add the framework dependency to the module's build.gradle file: ```groovy dependencies { implementation 'com.github.liangjingkanji:BRV:1.5.8' } ``` ## 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. ```