私のアプリケーションでは、WebURLからJSONを介してレイアウトの背景を設定します。しかし、画像ビューでは、私はこのように設定しています
try {
ImageView i = (ImageView)findViewById(R.id.animation);
Bitmap bitmap = BitmapFactory.decodeStream((InputStream)new URL("http://alpharithm.in/manager/test/img/files/products/mushroom-soup.jpg").getContent());
i.setImageBitmap(bitmap);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
背景として設定しないでください。レイアウトの背景を設定するにはどうすればよいですか?