Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 FriendPickerFragment,但不是只显示图片和名称,而是想添加更多细节,比如他在哪里工作?他住在哪里?
你知道我该怎么做吗?并解释?或指出我的例子。我在网上寻找解决方案,但没有找到任何东西。
不幸的是,FacebookFriendPickerFragment没有提供任何方法来定制它呈现的信息。最合理的解决方案是使用ListView. 您还应该创建列表的适配器,其中GraphUser包含代表用户朋友的对象。好友列表可以通过使用Request.executeMyFriendsRequestAsync(Session, com.facebook.Request.GraphUserListCallback)方法从服务器获取。
FriendPickerFragment
ListView
GraphUser
Request.executeMyFriendsRequestAsync(Session, com.facebook.Request.GraphUserListCallback)