我使用scrollview在nxn矩阵中显示图像(属性图像),但它需要更多时间。要加载图像我正在使用通用图像加载器
config = new ImageLoaderConfiguration.Builder(getApplicationContext())
.threadPoolSize(1)
.discCacheExtraOptions(225,145, CompressFormat.PNG, 100,null)
.denyCacheImageMultipleSizesInMemory()
.build();
imageLoader = ImageLoader.getInstance();
imageLoader.init(config);
options = new DisplayImageOptions.Builder()
.cacheOnDisc(true)
.imageScaleType(ImageScaleType.IN_SAMPLE_POWER_OF_2)
.bitmapConfig(Bitmap.Config.RGB_565)
.build();
我正在使用它作为
imageLoader.displayImage(android.os.Environment.getExternalStorageDirectory()+"/SaintGobain/Images/"+projectDetail.get(dbHelper.thumb_image_path), thumb, options);
我有更多的图像可以显示为每列10列和15到20个图像。所以我想要的图像是可见的,必须首先加载视图滚动,其余必须加载。 Plz指导我如何自定义通用图像加载器?
答案 0 :(得分:0)