1. ホーム
  2. android

[解決済み] urlから画像を読み込む

2022-04-23 08:07:14

質問

画像のURLを持っています。このURLの画像をImageViewで表示したいのですが、うまくいきません。

どうすれば実現できるのでしょうか?

どのように解決するのですか?

URL url = new URL("http://image10.bizrate-images.com/resize?sq=60&uid=2216744464");
Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
imageView.setImageBitmap(bmp);