当前位置: 代码迷 >> Android >> android中网络图片的展示
  详细解决方案

android中网络图片的展示

热度:45   发布时间:2016-05-01 18:36:26.0
android中网络图片的显示

 public static Bitmap returnBitMap(String url) {		URL myFileUrl = null;		Bitmap bitmap = null;		try {			myFileUrl = new URL(url);		} catch (MalformedURLException e) {			e.printStackTrace();		}		try {			HttpURLConnection conn = (HttpURLConnection) myFileUrl.openConnection();			conn.setDoInput(true);			conn.connect();			InputStream is = conn.getInputStream();			bitmap = BitmapFactory.decodeStream(is);			is.close();		} catch (IOException e) {			e.printStackTrace();		}		return bitmap;	}
?
  相关解决方案