2
我想從網絡中從某個URL獲取圖像並將其顯示在我的ImageView中。 以下是我使用的代碼: -setImageURI/setimagebitmap從網絡中獲取圖像並在圖像視圖中顯示
Bitmap bm = null;
try {
URL aURL = new URL("stringURL");
URLConnection conn = aURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
bm = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
}catch (Exception e) {
// TODO: handle exception
}
iv.setImageBitmap(bm);
,但我不能讓圖像