Facebook WallPOstImagesのグラフAPIJsonResponseを使用して、APPに表示しました。しかし、画像は非常にぼやけて見えます..Facebookのように鮮明な画像を取得する方法を教えてください
これが私のコードです
URL url=new URL("http://graph.facebook.com/"+hashMap.get("id")+"/picture?type=normal");
Bitmap bitmap=BitmapFactory.decodeStream(url.openConnection().getInputStream());
((ImageView)view.findViewById(R.id.imageView_ProfilePicture)).setImageBitmap(bitmap);
url=new URL(hashMap.get("picture_url"));
bitmap=BitmapFactory.decodeStream(url.openConnection().getInputStream());
((ImageView)view.findViewById(R.id.imageView_FullImage)).setImageBitmap(bitmap);
そしてAsynTaskで
dobackground(){
hashMap.put("picture_url", data.getJSONObject(i).getString("picture"));
}