1. 程式人生 > >Listview非同步載入圖片後獲得對應位置的Imageview的方法

Listview非同步載入圖片後獲得對應位置的Imageview的方法

在Listview非同步載入網路圖片時,可在listview adapter的getview中為Imageview設定Tag(Tag為該圖片的Url,唯一),然後當載入完圖片時,可通過Listview的findViewByTag方法通過Imageview:

 ImageView imageView = (ImageView) listview.findViewWithTag(imageUrl);
                if (imageView != null && bitmap != null) {
                        imageView.setImageBitmap(bitmap);
                    }