Skip to content

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

License

Notifications You must be signed in to change notification settings

jineshfrancs/LazyLoadingViews

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ae99f38 · Jun 5, 2017

History

8 Commits
Mar 3, 2017
Jun 5, 2017
Mar 3, 2017
Jun 5, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017
Mar 3, 2017

Repository files navigation

LazyLoadingViews

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

Output sample

Just add the loading views in adapter layout.

  <test.jinesh.loadingviews.LoadingTextView
            android:layout_width="match_parent"
            android:textColor="#000"
            android:id="@+id/city"
            android:layout_margin="5dp"
            android:layout_weight="1"
            android:gravity="center_vertical"
            android:textSize="18sp"
            android:layout_height="0dp" />
			

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages