我正在开发一个包含许多类的项目,现在我想在整个应用程序中显示我的基本4个选项卡。有谁能够帮我? 主要要求
答案 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);