View Full Version : تغییر فونت title در tablayot
dibdab
دوشنبه 04 بهمن 1395, 23:46 عصر
سلام دوستان
میخوام فونت title تب لیوت رو تغییر بدم کسی هست راهنمایی کنه
hesam67_b
سه شنبه 05 بهمن 1395, 10:52 صبح
با سلام.
این تابع رو تست کنید :
private void changeTabsFont() {
ViewGroup vg = (ViewGroup) tabLayout.getChildAt(0);
int tabsCount = vg.getChildCount();
for (int j = 0; j < tabsCount; j++) {
ViewGroup vgTab = (ViewGroup) vg.getChildAt(j);
int tabChildsCount = vgTab.getChildCount();
for (int i = 0; i < tabChildsCount; i++) {
View tabViewChild = vgTab.getChildAt(i);
if (tabViewChild instanceof TextView) {
((TextView) tabViewChild).setTypeface(Font.getInstance().getTy peFace(), Typeface.NORMAL);
}
}
}
}
vBulletin® v4.2.5, Copyright ©2000-1404, Jelsoft Enterprises Ltd.