Creating tabs using Fragments now that TabActivity is deprecated

耗尽温柔 提交于 2019-11-26 05:37:47

问题


I am creating an application which has five tabs at the bottom of the screen, each of which opens a different Activity.

My Tab Activity extends TabActivity which I have just read is deprecated and I should use Fragments instead.

How do I change my app to use Fragments instead? I have read the information on android.developer.com but I still have no idea how to do this.


回答1:


You will need to use the android compatibility library to use fragments. It can be found as a jar file in your android sdk folder.

There are many tutorials out there for fragments.

There is a project named ActionBarSherlock which demos all the capability of the compatibility library. Source code is also available on github. The link is on there site.

This is another tutorial http://mobile.tutsplus.com/tutorials/android/android-compatibility-working-with-fragments/



来源:https://stackoverflow.com/questions/7599816/creating-tabs-using-fragments-now-that-tabactivity-is-deprecated

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!