小编典典

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

all

您如何使用 URL 中引用的图像ImageView


阅读 71

收藏
2022-03-08

共1个答案

小编典典

无论如何,人们要求我的评论将其发布为答案。我在发帖。

URL newurl = new URL(photo_url_str); 
mIcon_val = BitmapFactory.decodeStream(newurl.openConnection().getInputStream());
profile_photo.setImageBitmap(mIcon_val);
2022-03-08