标签:
为了方便记忆,写下。
s为url
需要添加网络权限,还有开启子线程访问网络
public Bitmap getBitmap(String s)
{
Bitmap bitmap = null;
try
{
URL url = new URL(s);
bitmap = BitmapFactory.decodeStream(url.openStream());
} catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
return bitmap;
}
}
标签:
原文地址:http://www.cnblogs.com/aidonglei/p/4220917.html