LinearLayout linearLayout = (LinearLayout) mTbTitle.getChildAt(0);
linearLayout.setShowDividers(LinearLayout.SHOW_DIVIDER_MIDDLE);
linearLayout.setDividerPadding(40); // 设置分割线的pandding
linearLayout.setDividerDrawable(ContextCompat.getDrawable(getContext(),
R.drawable.sp_exposure_select));
文件 sp_exposure_select
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#757575"/>
<size
android:width="1dp"
/>
</shape>