Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andriipanasiuk/expandablerecyclerview
Custom RecyclerView with smooth expanding/collapsing items
https://github.com/andriipanasiuk/expandablerecyclerview
Last synced: about 2 months ago
JSON representation
Custom RecyclerView with smooth expanding/collapsing items
- Host: GitHub
- URL: https://github.com/andriipanasiuk/expandablerecyclerview
- Owner: andriipanasiuk
- Created: 2015-09-22T20:29:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-26T12:40:20.000Z (about 9 years ago)
- Last Synced: 2023-03-01T20:46:33.157Z (almost 2 years ago)
- Language: Java
- Homepage:
- Size: 977 KB
- Stars: 52
- Watchers: 1
- Forks: 18
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Developer's goal
Create RecyclerView that has possibility to expand/collapse its items smoothly.
While we don't know height of the expanded item views beforehand.![Demo GIF](https://github.com/andriipanasiuk/ExpandableRecyclerView/blob/master/demo.gif)
### Integration into the project
For now you can use it as library project with the code or simply copy all the needed staff (package `core`) into your project.
### Usage
In package `sample` there is the example of `ExpandableRecyclerView` usage.
`Core` package contains all the library's staff.### Under the hood
In fact we have `FrameLayout` with 2 childs:
- `ScrollView` containing view same as RecyclerView's item
- `RecyclerView` itself.The first one is invisible and used for measuring height of the expanded state of the RecyclerView's item.
We go such way cause before animating item we have to know its desired height after expanding.
This view placed inside the `ScrollView` so that we could have items bigger than screen height.