Tablayout添加分割线

效果图

创建xml文件tablayout_divider_vertical.xml




    
    


然后代码中引用

LinearLayout linearLayout = (LinearLayout) mTabLayout.getChildAt(0);
linearLayout.setShowDividers(LinearLayout.SHOW_DIVIDER_MIDDLE);
linearLayout.setDividerDrawable(ContextCompat.getDrawable(this,R.drawable.tablayout_divider_vertical));

mTabLayout就是TabLayout控件

你可能感兴趣的:(Tablayout添加分割线)