如何使用Android Universal Image Loader使用ImageLoad

时间:2013-11-05 14:37:50

标签: java android android-listview

关于我之前HERE的话题,我设法在列表视图中显示图像。事实证明,在显示图像的过程中没有使用异步,我感觉很重要。然后我尝试使用库Android Universal Image Loader。在我的库中,使用组合并替换之前使用的ImageLoader库仍然有点困惑。

我在我的Activity和我的适配器中放入了onCreate

File cacheDir = StorageUtils.getCacheDirectory(this.getApplicationContext());
        ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(this.getApplicationContext())
            .memoryCacheExtraOptions(480, 800) // default = device screen dimensions
            .discCacheExtraOptions(480, 800, CompressFormat.JPEG, 75, null)
            .threadPoolSize(3) // default
            .threadPriority(Thread.NORM_PRIORITY - 1) // default
            .tasksProcessingOrder(QueueProcessingType.FIFO) // default
            .memoryCache(new LruMemoryCache(2 * 1024 * 1024))
            .memoryCacheSize(2 * 1024 * 1024)
            .memoryCacheSizePercentage(13) // default
            .discCache(new UnlimitedDiscCache(cacheDir)) // default
            .discCacheSize(50 * 1024 * 1024)
            .discCacheFileCount(100)
            .imageDownloader(new BaseImageDownloader(this.getApplicationContext())) // default
            .build();
        ImageLoader.getInstance().init(config);

在我的循环中(在onPostExecute中):

for (int i = 0; i < allData.length(); i++) {

    JSONObject c = allData.getJSONObject(i);

    // Storing each json item in variable
    String id = c.getString(Constants.TAG_MenuID);
    String title = c.getString(Constants.TAG_Title);
    String post = c.getString(Constants.TAG_Post);
    String image = c.getString(Constants.TAG_Image);

    BeritaBean mb = new BeritaBean();
    mb.setID(id);
    mb.setTitle(title);
    mb.setPost(post);
    mb.setImg(image);

    AmbilDataBean.add(mb);
}
adapter.setItem(AmbilDataBean);

然后我也改变了上一个的适配器(使用ImageLoader类):

public View getView(int position, View convertView, ViewGroup parent) {

        View v = inflater.inflate(R.layout.list_row, null);

        ImageView img       = (ImageView) v.findViewById(R.id.image);
        TextView judul      = (TextView) v.findViewById(R.id.judul);
        TextView tanggal    = (TextView) v.findViewById(R.id.tanggal);
        TextView isi        = (TextView) v.findViewById(R.id.isi);

        BeritaBean obj      = (BeritaBean) getItem(position);

        judul.setText(obj.getTitle());
        tanggal.setText(obj.getCreated());
        isi.setText(obj.getPost());

        try {
            String urlImage = obj.getImg();
            if(urlImage.length() > 0){
                img.setTag(urlImage);
                imageLoader.DisplayImage(urlImage, img);
            }
        } catch (Exception e) {

        }
        return v;
    }

成为(使用Universal Image Loader)部分:

try {
        String urlImage = obj.getImg();
        if(urlImage.length() > 0){
            img.setTag(urlImage);
            imageLoader.displayImage(urlImage, img);
        }
    } catch (Exception e) {

    }

但在我的应用程序运行后,静止图像无法显示。这个库中是否有缺少的设置?请帮忙

1 个答案:

答案 0 :(得分:1)

这看起来有点像矫枉过正 - 对于一个使用异步加载并处理列表视图的优秀库,请查看koush(众所周知的开发)UrlImageViewHelper lib on github