TabActivity 与 FragmentActivity
我想知道使用Fragments(新版本的ActivityGroup)有什么好处,目前我可以使用TabActivity做同样的事情。如果我想替换固定的 tabwidget,我可以将可见性设置为“消失”,并更改 tabActivites,我可以在自定义布局的 onClick 事件中使用 setCurrentTab(int c)。您能告诉我使用 FragmentActivities 的动机吗?
I wonder what is the advantage of using Fragments(the new version of ActivityGroup) As for now I can do the same with TabActivity. If I want to replace the fixed tabwidget I can set visibility to gone and to change tabActivites I can use setCurrentTab(int c) in the onClick event of my custom layout. Could you tell me a motivation to use FragmentActivities instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TabActivity 已弃用。请参阅此处: http://developer.android.com/reference/android/app/ TabActivity.html
在我看来,向 FragmentActivity 的过渡对于社区来说是一个很好的举措,它提供了一种更简单的设计方法来“分段”活动及其包含的视图。
TabActivity is depricated. See here: http://developer.android.com/reference/android/app/TabActivity.html
In my opinion the transition towards FragmentActivity is a good move for the community, offering a simpler designed approach to "fragmenting" activities and the views they contain.