美文网首页
Tablayout添加分割线

Tablayout添加分割线

作者: _琳哥 | 来源:发表于2018-10-08 14:21 被阅读27次
效果图

创建xml文件tablayout_divider_vertical.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <solid android:color="@color/color_F5F5F5"/>
    <size android:width="1dp"/>

</shape>

然后代码中引用

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添加分割线

      本文链接:https://www.haomeiwen.com/subject/gatjaftx.html