README.md 3.3 KB
Newer Older
陈宇明 已提交
1
[![](https://jitpack.io/v/CymChad/BaseRecyclerViewAdapterHelper.svg)](https://jitpack.io/#CymChad/BaseRecyclerViewAdapterHelper)![](https://travis-ci.org/CymChad/BaseRecyclerViewAdapterHelper.svg?branch=master)[![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=14)[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-BaseRecyclerViewAdapterHelper-green.svg?style=true)](https://android-arsenal.com/details/1/3644)[![CircleCI](https://circleci.com/gh/CymChad/BaseRecyclerViewAdapterHelper/tree/master.svg?style=svg)](https://circleci.com/gh/CymChad/BaseRecyclerViewAdapterHelper/tree/master)[![Codacy Badge](https://api.codacy.com/project/badge/Grade/2302d0084d0048eaa0f9bac4350837a0)](https://www.codacy.com/app/CymChad/BaseRecyclerViewAdapterHelper?utm_source=github.com&utm_medium=referral&utm_content=CymChad/BaseRecyclerViewAdapterHelper&utm_campaign=Badge_Grade)[![](https://img.shields.io/badge/%E4%BD%9C%E8%80%85-%E9%99%88%E5%AE%87%E6%98%8E-7AD6FD.svg)](http://www.jianshu.com/u/f958e66439f0)  
陈宇明 已提交
2
# BRVAH
陈宇明 已提交
3
Powerful and flexible RecyclerAdapter,
陈宇明 已提交
4
Please feel free to use this. (Welcome to **Star** and **Fork**)  
陈宇明 已提交
5 6

kotlin demo :[BRVAH_kotlin](https://github.com/AllenCoder/BRVAH_kotlin)
陈宇明 已提交
7 8
# Document
- [English](https://github.com/CymChad/BaseRecyclerViewAdapterHelper/wiki)
陈宇明 已提交
9
- [中文](http://www.jianshu.com/p/b343fcff51b0)  
陈宇明 已提交
10

陈宇明 已提交
11
## [UI](https://github.com/CymChad/BaseRecyclerViewAdapterHelper/issues/694)
陈宇明 已提交
12
## Demo
C
CymChad 已提交
13 14

[![Get it on Google Play](https://developer.android.com/images/brand/en_generic_rgb_wo_60.png)](https://play.google.com/store/apps/details?id=com.chad.baserecyclerviewadapterhelper)
陈宇明 已提交
15

陈宇明 已提交
16 17 18
[国内下载地址](https://fir.im/s91g)  

# proguard-rules.pro
陈宇明 已提交
19 20
```
-keep class com.chad.library.adapter.** {
A
Allen 已提交
21
*;
陈宇明 已提交
22
}
A
Allen 已提交
23 24
-keep public class * extends com.chad.library.adapter.base.BaseQuickAdapter
-keep public class * extends com.chad.library.adapter.base.BaseViewHolder
陈宇明 已提交
25 26
-keepclassmembers  class **$** extends com.chad.library.adapter.base.BaseViewHolder {
     <init>(...);
A
Allen 已提交
27
}
陈宇明 已提交
28 29
```

陈宇明 已提交
30
# Extension library
陈宇明 已提交
31
[PinnedSectionItemDecoration](https://github.com/oubowu/PinnedSectionItemDecoration)  
陈宇明 已提交
32
[EasyRefreshLayout](https://github.com/anzaizai/EasyRefreshLayout)  
陈宇明 已提交
33
[EasySwipeMenuLayout](https://github.com/anzaizai/EasySwipeMenuLayout)
34

陈宇明 已提交
35
# Thanks
陈宇明 已提交
36 37 38 39 40 41 42 43 44 45 46
contributors:  
[Allen](https://github.com/AllenCoder)
[Harlan](https://github.com/elfman)
[Tianyang Sheng](https://github.com/tysheng)
[BlingBling](https://github.com/1109993488)
[GajAngels](https://github.com/githubzaibao)
[Frank Kwok](https://github.com/FrankKwok)
[QtyearLin](https://github.com/QtyearLin)
[Santiago Castro](https://github.com/bryant1410)

project:  
C
ChadChen 已提交
47
[JoanZapata / base-adapter-helper](https://github.com/JoanZapata/base-adapter-helper)
C
CymChad 已提交
48

陈宇明 已提交
49
# License
C
CymChad 已提交
50
```
C
CymChad 已提交
51
Copyright 2016 陈宇明
C
CymChad 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```