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: 1 day ago
JSON representation

Loading effect for the child views in Adapter View before binding data from service.

Lists

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();

```