在我的应用中,我使用ViewPager和PagerTabStrip,我需要将自定义字体设置为我的小部件。要设置Button
或TextView
的字体,我只需扩展类并设置字体。
public class MyButton extends Button {
public MyButton(Context context) {
super(context);
initCustomFont();
}
public MyButton(Context context, AttributeSet attrs) {
super(context, attrs);
initCustomFont();
}
public MyButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
initCustomFont();
}
private void initCustomFont() {
if(!isInEditMode()) {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/boton_regular.ttf");
setTypeface(tf);
}
}
}
但我不能将此方法用于PagerTabStrip
。是否有其他方法可以设置可与PagerTabStrip
一起使用的字体?
答案 0 :(得分:20)
有点晚了,但这是一个解决方案。获取PagerTabStrip的子视图,并检查它是否是TextView的实例。如果是,请设置字体:
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)
}
}
答案 1 :(得分:1)
使用层次结构视图{>检查PagerTabStrip
(在运行应用程序时在Eclipse中打开Hierarchy View透视图)并搜索其子项。一个必须是TextView
,其中包含标签的标题。获取此TextView
并设置其字体。