Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jineshfrancs/LazyLoadingViews
Loading effect for the child views in Adapter View before binding data from service.
https://github.com/jineshfrancs/LazyLoadingViews
lazy-loading list
Last synced: 2 months ago
JSON representation
Loading effect for the child views in Adapter View before binding data from service.
- Host: GitHub
- URL: https://github.com/jineshfrancs/LazyLoadingViews
- Owner: jineshfrancs
- License: apache-2.0
- Created: 2017-03-03T12:55:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-05T09:54:26.000Z (over 7 years ago)
- Last Synced: 2024-08-03T01:18:31.513Z (6 months ago)
- Topics: lazy-loading, list
- Language: Java
- Size: 311 KB
- Stars: 202
- Watchers: 7
- Forks: 36
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-android-ui - LazyLoadingViews - Adapter视图中子视图加载效果 (进度条)
README
# LazyLoadingViews
Loading effect for the child views in Adapter View before binding data from service.![Output sample](https://github.com/jineshfrancs/LazyLoadingViews/blob/master/screens/loading.gif)
Just add the loading views in adapter layout.
```
```
Call ```startLoading()``` to show loading effect on views.```
LoadingTextView cityText = (LoadingTextView) view.findViewById(R.id.city);
cityText.startLoading();
```Call ```stopLoading()``` to hide loading effect on views.
```
cityText.stopLoading();```