facebbok から大きな画像をダウンロードしたい。私は通常のサイズの画像をダウンロードして、このコードを投げることができます::
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);
}
ヘルプ !!