使用 Android 加载 Facebook 好友信息
在我的应用程序中,我正在与 Facebook 集成,我这样做:
登录 Facebook 并获取朋友的所有信息并将其显示在列表视图中。如果用户有很多朋友,则需要一些时间才能完成此操作。
那么,有没有什么办法可以依次获取固定数量的好友信息呢?假设我想要获取前 10 个朋友的信息,并将其显示在列表视图中,然后再显示后 10 个朋友。
我的列表视图应该在后台任务中更新,并且应该可以顺利运行。
In my application I am integrating with Facebook and I do:
Log in Facebook and get all information of friends and display it in a List View. It will take a time to do this if the user have a number of friends.
So, is there any way to get information of friend in fixed number sequentially. Suppose I want to get the information for the first 10 friends and display it in a list view and further the next 10.
My list view should be updated in a background task and should working smoothly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要使用一些已经制作的 API 或 JAR 文件来进行 Facebook 集成。
我刚刚找到了一个 FBRocket 和 文档文件。可以看到它有两个功能。第一个是List getFriendUIDs(),第二个是List getFriends(String[] uids)。
而且您一次可以获得任意多个 UID 的好友列表。由此 Friend 对象可以获取有关朋友的信息并使用它在您的应用程序中。
I think you need to use some already made API or JAR file for Facebook integration.
I just have found one FBRocket and the documentation file for it. You can see that it has two functions. One is List getFriendUIDs() and the second is List getFriends(String[] uids).
And you can get a list of friends for as many UIDs you wish at a time. And from that the Friend object can get information about a friend and use it in your application.