0

我需要从 url 中获取图像并将它们加载到 gridview 中。我在扩展基本适配器的 ImageAdapter 类的 getView 方法中获取主线程异常的网络。我如何使用单独的线程或异步任务来解决这个问题。

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

    ImageView imageView;

    try {

            URL url = new URL(Product_ItemsURLs[position]);

            InputStream content = (InputStream)url.getContent();

            Drawable drawable = Drawable.createFromStream(content , "src"); 

            if (convertView == null)
            {
                imageView = new ImageView(mContext);
                imageView.setLayoutParams(new GridView.LayoutParams(380,380));
                imageView.setScaleType(ImageView.ScaleType.FIT_XY);
                imageView.setPadding(10, 10, 10, 10);
            }
            else
            {
                imageView = (ImageView) convertView;
            }

            imageView.setImageDrawable(drawable);

            return imageView;

        } catch (MalformedURLException e) {

            e.printStackTrace();
            return null;

        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return null;
        }

}
4

1 回答 1

0

下面的行是导致问题的原因。它正在执行网络操作。从蜂窝开始,android 不允许在 UI 线程上进行网络操作。

Drawable drawable = Drawable.createFromStream(content , "src");

您需要使用 anAsynctask来下载可绘制对象,并将可绘制对象设置为您onPostExecute(在 UI 线程上运行)中的视图。

于 2012-10-17T10:07:33.927 回答