MaterialTabHost
MaterialTabHost copied to clipboard
I want to change the font of text on MaterialTabhost ?
I tried varies methods of changing the font. Like trying to get textview (its private-- cant access).
How do i set different fonts for different tabs ? Please help .
here is my question http://stackoverflow.com/questions/35988592/how-to-change-font-of-text-in-materialtabhost-in-android
I found solution for this.
Typeface fntRoboRegular = Typeface.createFromAsset(getAssets(), "Roboto-Regular.ttf");
for (int i = 0; i < tabHost.getTabWidget().getChildCount(); i++) {
TextView tv = (TextView) tabHost.getTabWidget().getChildAt(i);
if (i == 0)
tv.setTextColor(ContextCompat.getColor(context, R.color.clrBlue));
else
tv.setTextColor(ContextCompat.getColor(context, R.color.clrLiteBlue));
tv.setTextSize(10);
tv.setTypeface(fntRoboRegular);
}
we can use above code