Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used graph API Json Response of facebook Wall POst Images and display in my APP i successfully got it. But the images look very Blur .. please tel me how to get clear images as like in Facebook

here is my code

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);

And in AsynTask

dobackground(){

hashMap.put("picture_url", data.getJSONObject(i).getString("picture"));
}
share|improve this question

2 Answers

Use "/picture?type=large" instead of "/picture?type=normal" to get a slightly bigger picture.

share|improve this answer
Thanks a lot!!! Let be try now – Manoj Kumar Feb 11 at 14:20
Im not asked to get image size..my uploaded posts and not good looking.. i seems like a blur image. so how can we get clarity image any code u have plz help me .. thanks in Advance – Manoj Kumar Feb 14 at 5:53

While ?type=large provides a bigger image it may still not be large enough for a xhdpi display. You can actually specify a actual size now and they'll try their best to fulfill it.

For example this gives you a large square of Mark Zuckerberg:

http://graph.facebook.com/4/picture?width=500&height=500
share|improve this answer
thanks a lot got it – Manoj Kumar Feb 14 at 5:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.