谁能告诉我如何在android应用程序中显示facebook的多好友窗口?我对android是个新手,我不知道怎么做this.Could,有人提前协助me..Thanx了..
发布于 2012-03-13 15:55:55
你看过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());发布于 2012-03-13 20:02:36
最好的解决方案是使用Facebook sdk。有关详情,请访问https://developers.facebook.com/docs/mobile/android/build/#sample。
https://stackoverflow.com/questions/9679829
复制相似问题