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.
对于 android,您如何获取带有朋友缩略图的家庭提要?Atm 我正在使用 Twitter4j,但我似乎找不到任何东西。我可以获取提要,但如何获取缩略图?缩略图是推文旁边的用户个人资料图片。
有任何想法吗?
如果您有一个Tweet对象,您可以使用 TwittergetProfileImage方法和用户的屏幕名称。
Tweet
getProfileImage
如果你有一个Status对象,你可以调用getUser, 然后getProfileImageURL在返回的User对象上。
Status
getUser
getProfileImageURL
User