KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
wraprecyclerview
★ 50
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
angular-universal-express-firebase
:
A packaged Cloud Function to serve Angular Universal apps.
caffe-sal
:
Amulet and UCF methods for Saliency Detection
gff3sort
:
GFF3sort: A Perl Script to sort gff3 files and produce suitable results for tabix tools
How-to-configure-SSL-for-FileBeat-and-Logstash-step-by-step
:
How to configure SSL for FileBeat and Logstash step by step (Create CA, CSRs, Certificates, etc)
BethanysPieShop
:
Sample code for Pluralsight course Building an Enterprise ASP.NET Core MVC app
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
wraprecyclerview
?
Download (.md)
## 支持下拉刷新和上拉加载更多的`RecyclerView` 具体介绍请看:[传送门](https://github.com/oynix/android-learn/blob/master/widget/xRecyclerView/xRecyclerView.md) ### 使用 现已发布到两个源:JitPack 和 jCenter > 两个平台加载下来的代码是一样的,区别在于导入时使用的 groupId 和 artifactId 的不同,以及版本号。 > 建议使用 jCenter,省事一些 #### 一. jCenter 最新版本:1.0.0 ```groovy dependencies { implementation 'com.oynix.xrecyclerview:xrecyclerview:1.0.0' } ``` #### 二. JitPack 最新版本:2.0.0 1. 根目录`build.gradle`添加 ```groovy allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ``` 2. 项目目录`build.gradle`添加 ```groovy dependencies { implementation 'com.github.oynix:wraprecyclerview:2.0.0' } ``` 3. Sync,即可。[详细说明](https://github.com/oynix/android-learn/blob/master/widget/xRecyclerView/xRecyclerView.md) #### 2020.02.08更新 - v2.0.0 调整包名 #### 2020.02.07更新 - v1.0.0 修复已知问题,增加自定义LoadMoreView,发布至`JitPack` - v1.0.1 修复滑动距离不足导致循环滑动的bug #### 2019.12.18更新 - 修复bug:列表项未占满列表时,滑动列表会循环触发‘加载更多’操作 #### 2018.10.25更新 将原WrapperRecyclerView进行了重写: 1. 思路大致相同 2. 将更多内容封装 3. 修复了部分已知问题