如何在整个应用程序中显示底部的tab-bar

时间:2017-04-11 08:07:40

标签: android android-layout tabs tabbar

我正在开发一个包含许多类的项目,现在我想在整个应用程序中显示我的基本4个选项卡。有谁能够帮我? 主要要求

  • 1)使用tab-host
  • 2)tab-host的可见性应该是可见的,不应该进入 完整的应用程序,如Instagram。

1 个答案:

答案 0 :(得分:-3)

您可以通过将此代码添加到xml和类文件中,在每个片段或活动中简单地包含选项卡 添加每个xml文件

<include 
 android:layout=@layout/Your_tab_layout_file
 android:layout_width="match_parent"
 android:layout_height="wrap_content"/>

添加每个类文件

tabLayout = (TabLayout) findViewById(R.id.tabs);
tabLayout.setupWithViewPager(viewPager);