我想从服务器下载图像,我可以下载一些图像但不是全部,我不明白为什么。我搜索了整个网络,但没有找到任何解决方案。我的代码是
HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
drawable= Drawable.createFromStream(conn.getInputStream(), "");
我也试过这段代码:
bitmap = BitmapFactory.decodeStream(new URL(url).openConnection().getInputStream());
位图和可绘制对象似乎都不起作用。