我想从 facebook 下载大图。我能够下载正常大小的图像抛出此代码::
try{
phtoID.clear();
response = facebook.request(HelperActivity.wallAlbumID
+ "/photos");
JSONObject json = null;
json = Util.parseJson(response);
JSONArray photos = null;
photos = json.getJSONArray("data");
for (int i = 0; i < photos.length(); i++) {
JSONObject a = null;
a = photos.getJSONObject(i);
String url = a.getString("picture");
Log.d("URL",url);
URL imageURL = new URL(url);
Bitmap mIcon1 = BitmapFactory.decodeStream(imageURL
.openConnection().getInputStream());
phtoID.add(mIcon1);
}
帮助 !!