gpt4 book ai didi

java - 从 URL 加载位图

转载 作者:太空宇宙 更新时间:2023-11-04 14:02:13 25 4
gpt4 key购买 nike

我试图将网站上的图像加载到 ImageView 中,但没有加载任何内容。我对android相当陌生,所以我可能错过了一些简单/愚蠢的步骤或其他东西,但我在这里需要一些帮助。注意 photo[position] = www.mydomain.com/photo.png (包含 http://,我显然无法在此处输入)

// Locate the ImageView
imgphoto = (ImageView) itemView.findViewById(R.id.photos);
// Capture position and set to the ImageView

Bitmap bMap = BitmapFactory.decodeFile(photo[position]);
imgphoto.setImageBitmap(bMap);

最佳答案

只需使用 Picasso 。该库将为您加载。

Picasso.with(context).load("http://www.yourdomain.com/photo.png").into(imageView);

关于java - 从 URL 加载位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29194964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com