ورود

View Full Version : تغییر فونت Pager Tab Strip



master94
دوشنبه 30 شهریور 1394, 01:03 صبح
سلام...
چجوری میشه فونت متن Tab ها رو عوض کرد...؟

کدهام اینه:
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"android:id="@+id/viewPager"
android:layout_width="fill_parent"
android:layout_height="fill_parent">


<android.support.v4.view.PagerTabStrip
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/pagerTabStrip"
android:layout_gravity="top"
android:background="#FF0000"
android:textColor="#fff" />
</android.support.v4.view.ViewPager>

خیلی سرچ کردم،تنها راهی که بهش میخورد درست باشه این بود،که اینم نفهمیدم منظورش رو :لبخند:

Get the child views of the PagerTabStrip and check if it is an instance of a TextView. If it is, set the typeface:

for (int i = 0; i < pagerTabStrip.getChildCount(); ++i) {View nextChild = pagerTabStrip.getChildAt(i);
if (nextChild instanceof TextView) {
TextView textViewToConvert = (TextView) nextChild;
textViewToConvert.setTypeface(PUT_TYPEFACE_HERE)
}
}



ممنون :قلب: