android - delay while loading Bitmaps into ArrayList using UniversalImageLoader
问题 I need to load Bitmaps into ArrayList, then convert it to Bitmap[] and pass into ArrayAdapter to inflate ListView. I use UniversalImageLoader library and here is my code: final ArrayList<Bitmap> imgArray = new ArrayList<>(); //before the method scope, as a class field //...some code... File cacheDir = StorageUtils.getOwnCacheDirectory( getApplicationContext(), "/sdcard/Android/data/random_folder_for_cache"); DisplayImageOptions options = new DisplayImageOptions.Builder() .cacheInMemory(true)