如何从服务器访问图像并将其显示在我的 android 应用程序中。请帮帮我。
问问题
77 次
2 回答
0
于 2012-06-14T11:02:06.340 回答
0
我也是android开发的新手,但我是在我的一个学习应用程序上做到的。如果它是一个 URL,那么您执行以下操作:
Drawable picture;
try {
URL picurl = new URL("some URL");
InputStream content = (InputStream)picurl.getContent();
picture = Drawable.createFromStream(content , "src");
}
catch(Exception e){
//handle the Exception
}
于 2012-06-14T17:46:59.380 回答