https://github.com/dsiner/recyclerlist
Handwritten recyclable list, not ListView, RecyclerView.
https://github.com/dsiner/recyclerlist
list listview
Last synced: about 1 year ago
JSON representation
Handwritten recyclable list, not ListView, RecyclerView.
- Host: GitHub
- URL: https://github.com/dsiner/recyclerlist
- Owner: Dsiner
- Created: 2018-07-28T09:27:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-27T13:43:23.000Z (almost 8 years ago)
- Last Synced: 2025-06-12T07:09:22.850Z (about 1 year ago)
- Topics: list, listview
- Language: Java
- Homepage:
- Size: 142 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RecyclerList for Android
[](https://www.apache.org/licenses/LICENSE-2.0)
[](https://android-arsenal.com/api?level=9)
> Handwritten recyclable list, like `ListView`, `RecyclerView`.
## Demo
## Support list
- [x] Support recycling
- [x] Support simple or multiple adapter
- [ ] Support notifyDataSetChanged
### Use
```java
RecyclerList list = (RecyclerList) findViewById(R.id.list);
Adapter adapter = new Adapter(this, getDatas(200), R.layout.adapter_item);
list.setAdapter(adapter)
```
More usage see [Demo](app/src/main/java/com/d/recyclerlist/MainActivity.java)
## Licence
```txt
Copyright 2018 D
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.
```