Android-facebook集成

问题描述:

任何人都可以告诉我如何在Android应用程序中显示Facebook多人窗口? 我是新到Android的,我不知道该怎么办this.Could有人协助me..Thanx提前..Android-facebook集成

你有没有通过Facebook Android Tutorial哪里去了?。

您可以使用Graph API来查询朋友,例如在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。全部细节可在https://developers.facebook.com/docs/mobile/android/build/#sample