为了账号安全,请及时绑定邮箱和手机立即绑定

如何在Android中通过URL加载ImageView?

如何在Android中通过URL加载ImageView?

慕森卡 2019-05-27 16:48:45
如何在Android中通过URL加载ImageView?你如何使用URL引用的图像ImageView?
查看完整描述

4 回答

?
哔哔one

TA贡献1854条经验 获得超8个赞

你必须先下载图像

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;}

然后使用Imageview.setImageBitmap将位图设置为ImageView


查看完整回答
反对 回复 2019-05-27
  • 4 回答
  • 0 关注
  • 2549 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信