Jak odpowiedział Andrei , możesz zmienić czcionkę, rozszerzając klasę TabLayout . I jak Penzzz powiedział, nie można tego zrobić w addTab metody. Zastąp metodę onLayout , jak poniżej:
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom){
super.onLayout(changed, left, top, right, bottom);
final ViewGroup tabStrip = (ViewGroup)getChildAt(0);
final int tabCount = tabStrip.getChildCount();
ViewGroup tabView;
int tabChildCount;
View tabViewChild;
for(int i=0; i<tabCount; i++){
tabView = (ViewGroup)tabStrip.getChildAt(i);
tabChildCount = tabView.getChildCount();
for(int j=0; j<tabChildCount; j++){
tabViewChild = tabView.getChildAt(j);
if(tabViewChild instanceof AppCompatTextView){
if(fontFace == null){
fontFace = Typeface.createFromAsset(context.getAssets(), context.getString(R.string.IranSans));
}
((TextView) tabViewChild).setTypeface(fontFace, Typeface.BOLD);
}
}
}
}
Musi Overwrite onLayout metoda, ponieważ kiedy używasz metody setupWithViewPager do powiązania TabLayout z ViewPager, musisz ustawić tekst tabulatora albo za pomocą metody setText, albo w PagerAdapter po tym, a kiedy to się stanie, metoda onLayout zostanie wywołana w nadrzędnym ViewGroup ( TabLayout) i to jest miejsce na ustawienie fontface. (Zmiana tekstu TextView powoduje wywołanie metody onLayout jego rodzica - tabView ma dwoje dzieci, jedno to ImageView, drugie to TextView)
Inne rozwiązanie:
Najpierw te wiersze kodu:
if(fontFace == null){
fontFace = Typeface.createFromAsset(context.getAssets(), context.getString(R.string.IranSans));
}
W powyższym rozwiązaniu należy zapisać poza dwiema pętlami.
Ale lepszym rozwiązaniem dla API> = 16 jest użycie android: fontFamily :
Utwórz katalog zasobów systemu Android o nazwie czcionka i skopiuj żądaną czcionkę do katalogu.
Następnie użyj tych stylów:
<style name="tabLayoutTitles">
<item name="android:textColor">@color/white</item>
<item name="android:textSize">@dimen/appFirstFontSize</item>
<item name="android:fontFamily">@font/vazir_bold</item>
</style>
<style name="defaultTabLayout">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">@dimen/defaultTabLayoutHeight</item>
<item name="android:gravity">right</item>
<item name="tabTextAppearance">@style/tabLayoutTitles</item>
<item name="tabSelectedTextColor">@color/white</item>
<item name="tabIndicatorColor">@color/white</item>
<item name="tabIndicatorHeight">@dimen/accomTabIndicatorHeight</item>
<item name="tabMode">fixed</item>
<item name="tabGravity">fill</item>
<item name="tabBackground">@drawable/rectangle_white_ripple</item>
<item name="android:background">@color/colorPrimary</item>
</style>