All Projects â†’ jineshfrancs â†’ Lazyloadingviews

jineshfrancs / Lazyloadingviews

Licence: apache-2.0
Loading effect for the child views in Adapter View before binding data from service.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Lazyloadingviews

Awesome Umbraco
A curated list of awesome Umbraco packages, resources and tools
Stars: ✭ 173 (-13.5%)
Mutual labels:  list
Awesome Devtools
🤖 A curated list of in-browser bookmarklets, tools, and resources for modern full-stack software engineers.
Stars: ✭ 184 (-8%)
Mutual labels:  list
Awesome Choo
🌅 Awesome things related with choo framework
Stars: ✭ 194 (-3%)
Mutual labels:  list
Coc Lists
Common lists for coc.nvim
Stars: ✭ 176 (-12%)
Mutual labels:  list
Awesome Dev Websites
📄 A curated list of awesome developer personal websites
Stars: ✭ 182 (-9%)
Mutual labels:  list
Awesome Sre Tools
A curated list of Site Reliability and Production Engineering Tools
Stars: ✭ 186 (-7%)
Mutual labels:  list
Telegrambotslist
A list of all Telegram bots source hosted on github.
Stars: ✭ 172 (-14%)
Mutual labels:  list
Awesome Online Ide
🌩ī¸ A list of awesome online development environments
Stars: ✭ 2,542 (+1171%)
Mutual labels:  list
Python Sortedcontainers
Python Sorted Container Types: Sorted List, Sorted Dict, and Sorted Set
Stars: ✭ 2,379 (+1089.5%)
Mutual labels:  list
Gluebert
gluebert.js is a tiny helper lazy loading DOM Elements, StyleSheets and JavaScript files using dynamic import and code splitting
Stars: ✭ 194 (-3%)
Mutual labels:  lazy-loading
Comunidades En Telegram
Listado de Chats de Comunidades en Telegram
Stars: ✭ 178 (-11%)
Mutual labels:  list
Awesome Browser Extensions For Github
A collection of awesome browser extensions for GitHub.
Stars: ✭ 2,255 (+1027.5%)
Mutual labels:  list
C Macro Collections
Easy to use, header only, macro generated, generic and type-safe Data Structures in C
Stars: ✭ 192 (-4%)
Mutual labels:  list
Awesome Deep Learning Music
List of articles related to deep learning applied to music
Stars: ✭ 2,195 (+997.5%)
Mutual labels:  list
Awesome Sqlalchemy
A curated list of awesome tools for SQLAlchemy
Stars: ✭ 2,316 (+1058%)
Mutual labels:  list
Hackingtools
Exhaustive list of hacking tools
Stars: ✭ 174 (-13%)
Mutual labels:  list
React Lazy Hydration
Lazy Hydration for Server Rendered React Components
Stars: ✭ 187 (-6.5%)
Mutual labels:  lazy-loading
Awesome Json Datasets
A curated list of awesome JSON datasets that don't require authentication.
Stars: ✭ 2,421 (+1110.5%)
Mutual labels:  list
Awesome Network Analysis
A curated list of awesome network analysis resources.
Stars: ✭ 2,525 (+1162.5%)
Mutual labels:  list
Singlie
Singly circular & linear linked lists for ES6
Stars: ✭ 192 (-4%)
Mutual labels:  list

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].