Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/zaihuishou/ExpandableRecyclerview

An ExpandableRecycleradapter with Recyclerview
https://github.com/zaihuishou/ExpandableRecyclerview

Last synced: 1 day ago
JSON representation

An ExpandableRecycleradapter with Recyclerview

Lists

README

        

# ExpandableRecyclerview
An ExpandableRecycleradapter with Recyclerview

#Screenshots
![effict](/sample-screen.gif)

[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ExpandableRecyclerview-green.svg?style=true)](https://android-arsenal.com/details/1/3903)

##Gradle
```
compile 'com.zaihuishou:expandablerecycleradapter:1.0.3'
```

##Maven

```

com.zaihuishou
expandablerecycleradapter
1.0.3
pom

```

#How to use

* Expandable item:

data model class must `implement` [ExpandableListItem](https://github.com/zaihuishou/ExpandableRecyclerview/blob/master/expandablerecycleradapter/src/main/java/com/zaihuishou/expandablerecycleradapter/model/ExpandableListItem.java),and viewholder class must `extend` [AbstractExpandableAdapterItem](https://github.com/zaihuishou/ExpandableRecyclerview/blob/master/expandablerecycleradapter/src/main/java/com/zaihuishou/expandablerecycleradapter/viewholder/AbstractExpandableAdapterItem.java)

example:`public class Company implements ExpandableListItem` and `public class CompanyItem AbstractExpandableAdapterItem`

* Normal item

viewholder `extend` [AbstractAdapterItem](https://github.com/zaihuishou/ExpandableRecyclerview/blob/master/expandablerecycleradapter/src/main/java/com/zaihuishou/expandablerecycleradapter/viewholder/AbstractAdapterItem.java)

example:`public class EmployeeItem extends AbstractAdapterItem`

* Implement [BaseExpandableAdapter](https://github.com/zaihuishou/ExpandableRecyclerview/blob/master/expandablerecycleradapter/src/main/java/com/zaihuishou/expandablerecycleradapter/adapter/BaseExpandableAdapter.java)

```
mBaseExpandableAdapter = new BaseExpandableAdapter(mCompanylist) {
@NonNull
@Override
public AbstractAdapterItem getItemView(Object type) {

return null;
}

@Override
public Object getItemViewType(Object t) {

return -1;
}
};
```
* For all details, please check demo

#Databinding Use
* If you want to use this with databinding,please check [ExpandableRecyclerview-Databinding](https://github.com/zaihuishou/ExpandableRecyclerview-Databinding)

#Thanks
* [bignerdranch/expandable-recycler-view](https://github.com/bignerdranch/expandable-recycler-view)
* [zaihuishou/RcvAdapter](https://github.com/zaihuishou/RcvAdapter)

##License

```
Copyright 2016 zaihuishou

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 expressor implied.See the License for the specific language governing permissions and limitations under the License.
```