asynchronous loading of grid view items
i need to load 开发者_Go百科the items of the grid view asynchronously. Is it possible and how
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.
There is a brief example of using AsyncTask here on the Google Android blog
精彩评论