0

我已经编码以在 gridview 中显示一些图像。图片是从网址显示的。我面临的问题是,当我滚动时图像会被替换。一旦开始,图像的顺序就会不断变化。如果我单击网格中的任何图像,这会导致完整图像的显示延迟。请帮忙!

代码 :

public class ImageAdapter extends BaseAdapter {

    private Context mContext;
    private TextView txtUrl;
    private String response;
    public ImageView imageView;
    public static String[] mThumbIds;
    public ImageAdapter(Context c,String resp) {
        mContext = c;
        response = resp.trim();
        mThumbIds = resp.split(",");
    }

    public int getCount() {
        return mThumbIds.length;
    }

    public Object getItem(int position) {
        return null;
    }

    public long getItemId(int position) {
        return 0;
    }

    // create a new ImageView for each item referenced by the Adapter
    public View getView(int position, View convertView, ViewGroup parent) {

        if (convertView == null) {  // if it's not recycled, initialize some attributes
            imageView = new ImageView(mContext);
            imageView.setLayoutParams(new GridView.LayoutParams(95, 95));
            imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
            imageView.setPadding(6, 6, 6, 6);
        } else {
            imageView = (ImageView) convertView;
        }


        try {
             new LoadImageGrid(imageView).execute(mThumbIds[position]);

        } catch(Exception e) {
            txtUrl.setText("Error: Exception");
        }

        return imageView;

    }



class LoadImageGrid extends AsyncTask<String, Void, Drawable>
{

    ImageView imageView;
    public LoadImageGrid(ImageView im){
        imageView = im;
    }
    @Override
    protected Drawable doInBackground(String... args) {
        String url = args[0];
        Drawable d = null;
        try {
            d = Drawable.createFromStream((InputStream) new URL(url).getContent(), "src");
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return d;

    }


    @Override
    protected void onPostExecute(Drawable d) {
        imageView.setImageDrawable(d);
    }
4

2 回答 2

1

当您滚动网格视图时,不可见的图像视图将作为 convertView 参数返回到 getView()。但是您的 asyncTask 并没有停止,而是调用

imageView.setImageDrawable(d);

导致将下载的图像应用于错误位置的视图。因为现在你重用了相同的 imageView。快速修复是不使用 convertView。但这会稍微减慢您的应用程序的速度。

于 2013-03-08T16:38:12.010 回答
0

这似乎与转换视图有关。当您使用转换视图重用图像空间时,您应该在该范围内使用 Imageview。我建议在你当前的类代码中通过它的 id 找到 imageview,然后填充它。

于 2013-03-08T16:33:15.560 回答