```
public void reflex(final TabLayout tabLayout){
//了解源碼得知 線的寬度是根據(jù) tabView的寬度來(lái)設(shè)置的
? ? ? ? tabLayout.post(new Runnable() {
@Override
? ? ? ? ? ? public void run() {
try {
//拿到tabLayout的mTabStrip屬性
? ? ? ? ? ? ? ? ? ? LinearLayout mTabStrip = (LinearLayout)tabLayout.getChildAt(0);
? ? ? ? ? ? ? ? ? ? int dp10 =dip2px(tabLayout.getContext(), 10);
? ? ? ? ? ? ? ? ? ? for (int i =0; i < mTabStrip.getChildCount(); i++) {
View tabView = mTabStrip.getChildAt(i);
? ? ? ? ? ? ? ? ? ? ? ? //拿到tabView的mTextView屬性? tab的字?jǐn)?shù)不固定一定用反射取mTextView
? ? ? ? ? ? ? ? ? ? ? ? Field mTextViewField = tabView.getClass().getDeclaredField("mTextView");
? ? ? ? ? ? ? ? ? ? ? ? mTextViewField.setAccessible(true);
? ? ? ? ? ? ? ? ? ? ? ? TextView mTextView = (TextView) mTextViewField.get(tabView);
? ? ? ? ? ? ? ? ? ? ? ? tabView.setPadding(0, 0, 0, 0);
? ? ? ? ? ? ? ? ? ? ? ? //因?yàn)槲蚁胍男Ч? 字多寬線就多寬拐格,所以測(cè)量mTextView的寬度
? ? ? ? ? ? ? ? ? ? ? ?int tabWidth =0;
? ? ? ? ? ? ? ? ? ? ? ? tabWidth = tabView.getWidth();
? ? ? ? ? ? ? ? ? ? ? ? if (tabWidth ==0) {
tabView.measure(0, 0);
? ? ? ? ? ? ? ? ? ? ? ? ? ? tabWidth = mTextView.getMeasuredWidth();
? ? ? ? ? ? ? ? ? ? ? ? }
LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) tabView.getLayoutParams();
? ? ? ? ? ? ? ? ? ? ? ? int margin = (tabWidth - mTextView.getWidth()) /2;
? ? ? ? ? ? ? ? ? ? ? ? params.leftMargin = margin;
? ? ? ? ? ? ? ? ? ? ? ? params.rightMargin = margin;
? ? ? ? ? ? ? ? ? ? ? ? tabView.setLayoutParams(params);
? ? ? ? ? ? ? ? ? ? ? ? tabView.invalidate();
? ? ? ? ? ? ? ? ? ? }
}catch (NoSuchFieldException e) {
e.printStackTrace();
? ? ? ? ? ? ? ? }catch (IllegalAccessException e) {
e.printStackTrace();
? ? ? ? ? ? ? ? }
}
});
? ? }
```