原有的 com.android.support:design库 已经不再维护,请改成 com.google.android.material:material:1.2.0-alpha02
<com.google.android.material.tabs.TabLayout
android:id="@+id/fb_tab"
app:tabIndicatorColor="@color/transplant"//指示器透明色
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
TabLayout tabLayout = findViewById(R.id.fb_tab);
TabLayout.Tab childTab = tab.newTab(); //只能通过这样获取tab,不能直接 new TabLayout.Tab
View view = LayoutInflater.from(this).inflate(R.layout.mian_fb_tab_item,tab,false);//自己写的布局
childTab.setCustomView(view);
tabLayout .addTab(childTab);