Android与facebook的集成

Android与facebook的集成,android,facebook,Android,Facebook,谁能告诉我如何在android应用程序中显示facebook多朋友窗口? 我是android新手,我不知道怎么做。有人能帮我吗..Thanx提前..你看过了吗 您可以使用来查询朋友,例如在GridView中显示他们的照片 // get information about the currently logged in user mAsyncRunner.request("me", new meRequestListener()); // get the posts made by the "p

谁能告诉我如何在android应用程序中显示facebook多朋友窗口? 我是android新手,我不知道怎么做。有人能帮我吗..Thanx提前..

你看过了吗

您可以使用来查询朋友,例如在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());

最好的解决方案是使用Facebook sdk。有关详细信息,请访问