Android 应用程序中的 Facebook 和 Twitter 实时推送
I want show the live-feed of Facebook and Twitter in my android-applications.
Just like in this page . espn.com. How to do that?
Should i go for html , css in android.??
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该下载 Facebook API 和 Twitter API,然后创建一个漂亮的常规视图布局并用数据填充。例如,一个简单的 ListView 或 ScrollView,您可以使用适配器添加带有一些文本和图像(如果在帖子中可用)的模板视图。这样你就可以让它看起来完全像你想要的那样,而且也很简单。网站上有关于如何使用 API 的教程 https://github.com/facebook/ facebook-android-sdk 和 http://apiwiki.twitter.com/w/page/22554648/FrontPage。
I think you should download the Facebook API and Twitter API and just create a nice regular layout of views that you populate with the data. E.g. a simple ListView or ScrollView that you add a template View with some text and image (if available in the post) using an Adapter. That way you could make it look excactly the way you want to and it's also quite simple. There are tutorials for how to use the API on the web sites https://github.com/facebook/facebook-android-sdk and http://apiwiki.twitter.com/w/page/22554648/FrontPage.