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.

Can anyone tell me how to display facebook multifriend window in an android application? I am new to android an I don't know how to do this.Could someone assist me..Thanx in advance..

share|improve this question

2 Answers

Have you gone through the Facebook Android Tutorial?.

You can make use of the Graph API to query for friends and for example display their photos in a GridView.

// get information about the currently logged in user
mAsyncRunner.request("me", new meRequestListener());

// get the posts made by the "platform" page
mAsyncRunner.request("platform/posts", new pageRequestListener());

// get the logged-in user's friends
mAsyncRunner.request("me/friends", new friendsRequestListener());
share|improve this answer

The best solution is to use Facebook sdk. full details can be found at https://developers.facebook.com/docs/mobile/android/build/#sample

share|improve this answer

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.