How to load image (icons) of apps faster in gridView?
问题 I am displaying all apps installed in a gridView. When loading a lot of apps, lets say 30 or more, the icons will display at the default Android icon and then several seconds later update to the correct icon. I am wondering about improvements I can make to my code to make the icon images display faster. Load the following with: new LoadIconsTask().execute(mApps.toArray(new AppsInstalled[]{})); Here is what I do. private class LoadIconsTask extends AsyncTask<AppsInstalled, Void, Void>{