Android Design TabLayout 使用与分割线

xiaoxiao2021-02-28  22

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>

参考 http://www.jianshu.com/p/2b2bb6be83a8

转载请注明原文地址: https://www.6miu.com/read-1250013.html

最新回复(0)