首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

imageView设立网址图片

2012-09-27 
imageView设置网址图片myImageView.setImageURI(Uri.parse(http://example.com/logo.png))?2.try {?? ? U

imageView设置网址图片

myImageView.setImageURI(Uri.parse(http://example.com/logo.png));?

2.try {?
? ? URL thumb_u = new URL("http://www.example.com/image.jpg");?
? ? Drawable thumb_d = Drawable.createFromStream(thumb_u.openStream(), "src");?
? ? myImageView.setImageDrawable(thumb_d);?
}?
catch (Exception e) {?
? ? // handle it?
}?

?

3.

public Bitmap getRemoteImage(final URL aURL) {?
? ? try {?
? ? ? ? final URLConnection conn = aURL.openConnection();?
? ? ? ? conn.connect();?
? ? ? ? final BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());?
? ? ? ? final Bitmap bm = BitmapFactory.decodeStream(bis);?
? ? ? ? bis.close();?
? ? ? ? return bm;?
? ? } catch (IOException e) {}?
? ? return null;?
}?
setImageBitmap既可以了

?

热点排行