File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
src/main/java/me/jingbin/byrecyclerview/fragment Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 44[ ![ Apache License 2.0] [ 3 ]] [ 4 ]
55[ ![ API] [ 5 ]] [ 6 ]
66
7- ByRecyclerView 提供了下拉刷新、加载更多、 添加HeaderView/FooterView、setStateView、item点击/长按、万能分割线、粘性header、极简Adapter(databinding)等功能,有效的解决了XRecyclerView和BRVAH其中的问题 。
7+ ByRecyclerView 提供了下拉刷新、加载更多、 添加HeaderView/FooterView、setStateView、item点击/长按、万能分割线、粘性header、极简Adapter(databinding)等功能。
88
99## 功能特性
1010 - 1.支持 下拉刷新、加载更多
@@ -25,7 +25,7 @@ ByRecyclerView 提供了下拉刷新、加载更多、 添加HeaderView/FooterVi
2525## Document
2626 - 👉 [ ** 详细使用见Wiki!!!** ] ( https://github.com/youlookwhat/ByRecyclerView/wiki )
2727
28- - [ 项目介绍] ( https://github.com/youlookwhat/ByRecyclerView/wiki/%E9%A1%B9%E7%9B%AE%E4%BB%8B%E7%BB%8D ) | [ 更新日志 (1.1.0 )] ( https://github.com/youlookwhat/ByRecyclerView/wiki/Update-log )
28+ - [ 项目介绍] ( https://github.com/youlookwhat/ByRecyclerView/wiki/%E9%A1%B9%E7%9B%AE%E4%BB%8B%E7%BB%8D ) | [ 更新日志 (1.1.2 )] ( https://github.com/youlookwhat/ByRecyclerView/wiki/Update-log )
2929 - [ ByRecyclerView:只为改变BRVAH加载更多机制/addHeaderView的问题] ( https://juejin.im/post/5e0980fbe51d4558083345fc )
3030 - [ ByRecyclerView:真·万能分割线 (线性/宫格/瀑布流)] ( https://juejin.im/post/5e4ff123e51d4527255ca2e1 )
3131
@@ -37,7 +37,7 @@ ByRecyclerView 提供了下拉刷新、加载更多、 添加HeaderView/FooterVi
3737
3838
3939### 下载试用
40- [ AndroidX版本(Apk-Demo)] ( http://d.6short.com /byrecyclerview )
40+ [ AndroidX版本(Apk-Demo)] ( http://d.firim.top /byrecyclerview )
4141
4242<img width =" 250 " height =“250” src =" https://github.com/youlookwhat/ByRecyclerView/blob/master/art/png_dowload.png?raw=true " ></img >
4343
@@ -63,8 +63,8 @@ allprojects {
6363
6464```
6565dependencies {
66- implementation 'com.github.youlookwhat:ByRecyclerView:1.0.18' // AndroidX版本引入
67- implementation " com.github.youlookwhat:ByRecyclerView:1.0.18-support" // support版本引入
66+ // AndroidX版本引入
67+ implementation ' com.github.youlookwhat:ByRecyclerView:1.1.2'
6868}
6969```
7070
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ android {
66 applicationId " me.jingbin.byrecyclerview"
77 minSdkVersion 14
88 targetSdkVersion 28
9- versionCode 4
10- versionName " 1.0.17 "
9+ versionCode 5
10+ versionName " 1.1.2 "
1111 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1212 multiDexEnabled true
1313 }
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ protected void loadData() {
7676
7777 private void initAdapter () {
7878 recyclerView = getView (R .id .recyclerView );
79+ recyclerView .setBackgroundResource (R .color .colorWhite );
7980 mAdapter = new DataAdapter (DataUtil .get (activity , 6 ));
8081 LinearLayoutManager layoutManager = new LinearLayoutManager (activity );
8182 layoutManager .setOrientation (RecyclerView .VERTICAL );
You can’t perform that action at this time.
0 commit comments