Android异步加载图像到listview?

时间:2011-07-13 18:28:50

标签: java android multithreading listview

我有一个列表视图,其中我正在从用户的SD卡加载所有图像(作为预览)。我有一个自定义的SimpleCursorAdapter,当我覆盖getView()方法时,我尝试为图像加载启动后台线程。

我正在尝试做的是使用后台线程或其他东西将图像预览基本上“延迟加载”到列表视图中。我愿意接受新的解决方案。主要问题是滚动是非常缓慢的,因为加载图像是一项非常昂贵的操作。

这是我正在尝试的相关代码:

public class listOfImages extends SimpleCursorAdapter {

private Cursor c;
private Context context;


public listOfImages(Context context, int layout, Cursor c,
        String[] from, int[] to) {
    super(context, layout, c, from, to);
    this.c = c;
    this.context = context;

}

public View getView(int pos, View inView, ViewGroup parent) {
    View v = inView;
    if (v == null) {
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = inflater.inflate(R.layout.image_item, null);
    }


    this.c.moveToPosition(pos);     
    int columnIndex = this.c.getColumnIndexOrThrow(MediaStore.Images.Media.DISPLAY_NAME);
    String name = this.c.getString(columnIndex);
    columnIndex = this.c.getColumnIndexOrThrow(MediaStore.Images.Media.SIZE);
    String size = this.c.getString(columnIndex);
    columnIndex = this.c.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    String data = this.c.getString(columnIndex); //gives the filename 



    TextView sTitle = (TextView) v.findViewById(R.id.image_title);
    sTitle.setText(name);

    imagePreviewLoader ipl = new imagePreviewLoader(v, data); 
    ipl.mainProcessing(); 


    v.setTag(data); 

    v.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            Toast.makeText(context, "Image: " + v.getTag(), Toast.LENGTH_SHORT).show();  

            String filename = (String) v.getTag(); 


            Intent intent = new Intent(context, ViewImage.class);
            intent.putExtra("filename", filename);
            context.startActivity(intent);

        }
    });

    return v; 
}

}

现在我正在尝试的背景线程:

public class imagePreviewLoader {

private Handler handler = new Handler(); 
private View v; 
private String data;

public imagePreviewLoader(View v, String data) {
    this.v = v;
    this.data = data; 
}

protected void mainProcessing() {
    Thread thread = new Thread(null, doBackground, "Background"); 
    thread.start(); 
}

private Runnable doBackground = new Runnable() {
    public void run() {
        backgroundThreadProcessing(); 
    }
};

private void backgroundThreadProcessing() {
    handler.post(doUpdateGUI); 
}

private Runnable doUpdateGUI = new Runnable() {
    public void run() {
        updateGUI();
    }
}; 

private void updateGUI() {
    ImageView img = (ImageView) v.findViewById(R.id.image_view); 
    BitmapFactory.Options bfo = new BitmapFactory.Options();
    bfo.inSampleSize = 30;
    bfo.inTargetDensity = 50; 
    Bitmap bm = BitmapFactory.decodeFile(data, bfo);
    img.setImageBitmap(bm);
}

}

问题是滚动时所有内容都会尝试加载,因此滚动速度非常慢。我认为会发生什么是imageview只是保持空白(或占位符),直到线程加载了适当的图像。我猜不是。

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

看看我对this问题的回答,它有一个示例项目,展示了如何做,但从网上下载图像。您应该可以非常轻松地修改它,以便从SD卡获取图像。

答案 1 :(得分:1)

我有一个基本公共域许可证下易于使用的库,您可以查看...它将取消加载未显示的行并使用两个线程进行图像加载。

您可以在我的GitHub上查看:https://github.com/tbiehn/Android-Adapter-Image-Loader