Reputation: 2267
i need to load the items of the grid view asynchronously. Is it possible and how
Upvotes: 1
Views: 822
Reputation: 321
There is a brief example of using AsyncTask here on the Google Android blog
Upvotes: 0
Reputation: 8533
Yes, have a look at AsyncTask
in the SDK documentation for starters. It will give you an easy way of processing in the background while giving you an easy way of interacting with the UI thread.
Upvotes: 1