在图象的黑背景用通用图象装载者装载了

时间:2013-04-09 05:50:33

标签: android universal-image-loader

如下图所示。第一张图片是http://goldentrail.towardstech.com/assets/images/membersimage/buttons/eat.png处链接的默认图片。而它下面的第二个图像是使用uil加载的图像

这是图像加载器配置

    File cacheDir = StorageUtils.getCacheDirectory(context);
    ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(context)
            .memoryCacheExtraOptions(480, 800) // default = device screen dimensions
            .discCacheExtraOptions(480, 800, CompressFormat.JPEG, 75)
            .taskExecutor(AsyncTask.THREAD_POOL_EXECUTOR)
            .taskExecutorForCachedImages(AsyncTask.THREAD_POOL_EXECUTOR)
            .threadPoolSize(3) // default
            .threadPriority(Thread.NORM_PRIORITY - 1) // default
            .tasksProcessingOrder(QueueProcessingType.FIFO) // default
            .denyCacheImageMultipleSizesInMemory()
            .memoryCache(new LruMemoryCache(2 * 1024 * 1024))
            .memoryCacheSize(2 * 1024 * 1024)
            .discCache(new UnlimitedDiscCache(cacheDir)) // default
            .discCacheSize(50 * 1024 * 1024)
            .discCacheFileCount(100)
            .discCacheFileNameGenerator(new HashCodeFileNameGenerator()) // default
            .imageDownloader(new BaseImageDownloader(context)) // default
            .imageDecoder(new BaseImageDecoder()) // default
            .defaultDisplayImageOptions(DisplayImageOptions.createSimple()) // default
            .enableLogging()
            .build();

这是displayoptions

DisplayImageOptions options = new DisplayImageOptions.Builder()
    .bitmapConfig(Bitmap.Config.ARGB_8888) // default
    .cacheInMemory()
    .cacheOnDisc()

    .build();

enter image description here

2 个答案:

答案 0 :(得分:14)

您是否在自述文件中看到了评论:

DON'T COPY THIS CODE TO YOUR PROJECT! This is just example of ALL options using.

请勿使用.discCacheExtraOptions(480, 800, CompressFormat.JPEG, 75)。 您的图像保存在光盘缓存中,作为JPEG文件,不能具有透明背景。

答案 1 :(得分:0)

尝试使用android-query。这个API有助于图像和其他一些与android一起使用。