List<String> url = new ArrayList<String>();
public Bitmap[] thumbs = { };
我从我的方法中获取图像fetchImage(String url)
for (int i = 0; i < (url.size()); i++) {
/* I fetch image with param String URL and return as Bitmap */
Bitmap photo = fetchImage(url.get(i));
}
如何推Bitmap photo
入Bitmap[] thumbs
数组?