0

如何优化我的代码以快速加载图像?我的意思是在快速上下滚动后,需要几秒钟或更长时间才能将图像加载到ImageViewmy ListView. 这是我的适配器的示例代码:

public void bindView(View view, Context context, Cursor cursor) {
        String title = cursor.getString(cursor.getColumnIndex(MediaStore.MediaColumns.TITLE));
        String album_id = cursor.getString(cursor.getColumnIndex(MediaStore.Audio.Media.ALBUM_ID));
        ImageView iv = (ImageView)view.findViewById(R.id.imgIcon);
        TextView text = (TextView)view.findViewById(R.id.txtTitle);
        text.setText(title);
        Uri sArtworkUri = Uri.parse("content://media/external/audio/albumart");
        Uri uri = ContentUris.withAppendedId(sArtworkUri, Integer.valueOf(album_id));
        iv.setTag(uri);
        iv.setImageResource(R.drawable.background_holo_dark);
        new MyImageLoader(context,view,iv,uri).execute(uri);

    }

private class MyImageLoader extends AsyncTask<Uri, Void, Bitmap>{
        Context context;
        View v;
        ImageView iv;
        Uri u;

        MyImageLoader(Context context,View v,ImageView iv,Uri u){
            this.context = context;
            this.v = v;
            this.iv = iv;   
            this.u = u;
        }
        protected synchronized Bitmap doInBackground(Uri... param) {
            ContentResolver res = context.getContentResolver();
            InputStream in = null;
            try {
                in = res.openInputStream(param[0]);
            } 
            catch (FileNotFoundException e) {

                e.printStackTrace();
            }
            Bitmap artwork = BitmapFactory.decodeStream(in);
            return artwork;
        }
        protected void onPostExecute(Bitmap bmp){
            if(bmp!=null)
            {   ImageView iv = (ImageView)v.findViewById(R.id.imgIcon);
                if(iv.getTag().toString().equals(u.toString()))
                    iv.setImageBitmap(bmp);
                    //iv.setImageBitmap(Bitmap.createScaledBitmap(bmp, 100, 100, false));
            }
        }
    }
4

2 回答 2

1

我能想到的有两点:

  1. 从 ICS 开始,AsyncTask 是一个单线程的事情,这意味着,如果你触发 10 个 AsyncTask,它将完成第一个,然后转到第二个,然后是第三个,总是等待其他人完成后再继续。您可以使用.executeOnExecutor它的方法来运行与更多线程并行的任务。

  2. 使用 LruCache 对图像进行 RAM 缓存。这个来自 Google IO 2012 的视频准确地展示了如何制作 LruCache(我总是建议人们观看整个视频,因为有很多很酷的技巧)

于 2013-02-24T17:53:03.007 回答
0

尝试BitmapFun.zip使用兼容性库在 Android 2.3 上效果很好!

或者,如果您不想要任何兼容性库,您可以尝试(旧版本)ImageDownloader

于 2013-02-24T18:06:02.167 回答