surendra
surendra

Reputation: 2267

asynchronous loading of grid view items

i need to load the items of the grid view asynchronously. Is it possible and how

Upvotes: 1

Views: 822

Answers (2)

Matt Green
Matt Green

Reputation: 321

There is a brief example of using AsyncTask here on the Google Android blog

Upvotes: 0

techi.services
techi.services

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

Related Questions