如何使viewPager的选项卡充当微调器?

时间:2019-02-08 20:46:43

标签: android android-viewpager android-tablayout

我的应用中有一个视图寻呼机。我需要选项卡,而不仅仅是将文本和图像用作微调框。我没有找到有关此的任何教程,我需要知道该如何实现

1 个答案:

答案 0 :(得分:1)

您必须创建一个TabLayout,并为每个选项卡项设置自定义布局(包含微调器视图),如下所示:

tabLayout.getTabAt(0).setCustomView(R.layout.aquablue); tabLayout.getTabAt(1).setCustomView(R.layout.orangeprocess); tabLayout.getTabAt(2).setCustomView(R.layout.shipping); tabLayout.getTabAt(3).setCustomView(R.layout.deliver); tabLayout.getTabAt(4).setCustomView(R.layout.completedtxt); tabLayout.getTabAt(5).setCustomView(R.layout.cancelled);