博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android:通过URL加载ImageView
阅读量:6673 次
发布时间:2019-06-25

本文共 2083 字,大约阅读时间需要 6 分钟。

iphone上实现很简单,一行代码:

imageView.image =[UIImage imageWithContentsOfURL:theURL];

android:

两种方法:

Bitmap bimage=  getBitmapFromURL(bannerpath);image.setImageBitmap(bimage); public static Bitmap getBitmapFromURL(String src) {        try {            Log.e("src",src);            URL url = new URL(src);            HttpURLConnection connection = (HttpURLConnection) url.openConnection();            connection.setDoInput(true);            connection.connect();            InputStream input = connection.getInputStream();            Bitmap myBitmap = BitmapFactory.decodeStream(input);            Log.e("Bitmap","returned");            return myBitmap;        } catch (IOException e) {            e.printStackTrace();            Log.e("Exception",e.getMessage());            return null;        }    }

or try it

 

public static Bitmap loadBitmap(String url) {    Bitmap bitmap = null;    InputStream in = null;    BufferedOutputStream out = null;    try {        in = new BufferedInputStream(new URL(url).openStream(), IO_BUFFER_SIZE);        final ByteArrayOutputStream dataStream = new ByteArrayOutputStream();        out = new BufferedOutputStream(dataStream, IO_BUFFER_SIZE);        copy(in, out);        out.flush();        final byte[] data = dataStream.toByteArray();        BitmapFactory.Options options = new BitmapFactory.Options();        //options.inSampleSize = 1;        bitmap = BitmapFactory.decodeByteArray(data, 0, data.length,options);    } catch (IOException e) {        Log.e(TAG, "Could not load Bitmap from: " + url);    } finally {        closeStream(in);        closeStream(out);    }    return bitmap;}

 

 

 

方法2

 

Drawable drawable = LoadImageFromWebOperations(bannerpath);    image.setImageDrawable(drawable);     private Drawable LoadImageFromWebOperations(String url)    {         try         {             InputStream is = (InputStream) new URL(url).getContent();             Drawable d = Drawable.createFromStream(is, "src name");             return d;         }catch (Exception e) {             System.out.println("Exc="+e);             return null;         }     }

 

搞定!

 

转载地址:http://rbgxo.baihongyu.com/

你可能感兴趣的文章
日历插件原理
查看>>
ASP.NET常见问题
查看>>
管理信息系统的开发与管理
查看>>
Example016实现下拉框
查看>>
[HDU]2092整数解
查看>>
SQL Server 附加数据库提示5120错误
查看>>
SPOJ 10570 LONGCS - Longest Common Substring
查看>>
Javascript图片轮播
查看>>
java 实现七大基本排序算法
查看>>
Single Number
查看>>
bat批量重命名文件
查看>>
Java使用对象流读取文件的问题
查看>>
Sublime Text 3 安装插件管理 Package Control
查看>>
移动web图片加载完获取img宽高
查看>>
线段树入门
查看>>
AngularJs的UI组件ui-Bootstrap分享(七)——Buttons和Dropdown
查看>>
牛客小白月赛14 -G (筛法)
查看>>
Java内存模型(JMM)
查看>>
守护进程
查看>>
mongodb之 oplog 日志详解
查看>>