1
在我的應用程序中通過JSON設置web url的佈局背景。但在圖像視圖中我設置爲這樣如何在Android中通過Url設置佈局的背景圖像?
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();
}
不作爲背景設置。我如何設置佈局的背景?