android – TabAcitivity的替代品
作者:互联网
嗨朋友我想在项目中创建选项卡.为了制作标签,我发现了两种方式
1)使用不推荐使用的TabActivity类扩展活动类,因为我认为这是一种简单的方法,但不是为什么它被弃用,所以我想知道是否有任何其他类或该类的任何替代方法.
2)为每个标签创建单独的活动,这种标签虽然冗长但方便,但仍然感觉TabActivity很快.
我想知道是否有人能告诉我,
谢谢
解决方法:
For making tab there is two way which i found
你也可以:
>使用带有选项卡式指标的ViewPager,例如PagerTabStrip,ViewPagerIndicator项目中的TabPagerIndicator,PagerSlidingTabStrip等.
>使用操作栏中的选项卡(注意:这些将转换为某些设备大小和方向的下拉列表)
>使用FragmentTabHost
>在常规活动中使用TabHost和TabWidget
以下示例项目演示:
> PagerTabStrip:https://github.com/commonsguy/cw-omnibus/tree/master/ViewPager/TabPager
> TabPageIndicator:https://github.com/commonsguy/cw-omnibus/tree/master/ViewPager/VPI
>操作栏标签:https://github.com/commonsguy/cw-omnibus/tree/master/ActionBar/TabFragmentDemo
> TabHost和TabWidget:https://github.com/commonsguy/cw-omnibus/tree/master/WidgetCatalog/Tab
请注意,前三个示例都使用ActionBarSherlock,因此它们可以在Android 2.x设备上运行.第四个应该从Android 1.0开始运行.
标签:android,android-tabactivity 来源: https://codeday.me/bug/20190831/1778188.html