使用 Android 加载 Facebook 好友信息

发布于 2024-12-07 07:31:07 字数 224 浏览 0 评论 0原文

在我的应用程序中,我正在与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云胡 2024-12-14 07:31:07

我认为您需要使用一些已经制作的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文