How do I display each view once as they are loaded, in Android?
Posted
by Joe Masilotti
on Stack Overflow
See other posts from Stack Overflow
or by Joe Masilotti
Published on 2010-04-06T12:04:32Z
Indexed on
2010/04/06
12:23 UTC
Read the original article
Hit count: 164
I have an Android application that works off of a smaller database, around 300 entries. To view the database, I have created a custom view that contains individual rows of data. Then I query the database, and add each line to a newly created custom view.
The problem is that it takes a little white for all of this to be created/loaded, so when you open the application, it sits for a few seconds.
How can I load one line of data, then display it, then the next, append it, etc.?
© Stack Overflow or respective owner