我正在使用以下函数将远程图像加载到 ImageView。该图像肯定存在于我试图从中加载它的 URL 中,但是当我调用该函数并尝试显示图像时,ImageView 保持空白。
public static void setImage(ImageView view, String url) throws IOException {
final URLConnection conn = new URL(url).openConnection();
conn.connect();
final InputStream is = conn.getInputStream();
final BufferedInputStream bis = new BufferedInputStream(is, 100000);
final Bitmap bm = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
view.setImageBitmap(bm);
}