答案 0 :(得分:2)
custom view
设计TAB
。custom view
设置为每个TAB
试试这个:
// Tab
Tab tab = YourTabLayout.getTabAt(position);
// Get Custom view using LayoutInflater
// ...........
// Set custom view
tab.setCustomView(custom_View);
答案 1 :(得分:0)
您需要为每个标签添加自定义View
。
所以,一旦你设置了ViewPager
和Adapter
。
迭代选项卡并添加自定义视图。
类似的东西:
for (int i = 0; i < tabLayout.getTabCount(); i++) {
TabLayout.Tab tab = tabLayout.getTabAt(i);
tab.setCustomView(createCustomViewForTab(i);
}