android TabLayout自定义tab布局

原有的 com.android.support:design库 已经不再维护,请改成 com.google.android.material:material:1.2.0-alpha02


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);

你可能感兴趣的:(android TabLayout自定义tab布局)