我正在使用 ViewPagerIndicator,并且没有任何运气,所以我会在这里问。有没有办法更改 TabPageIndicator 中选项卡的字体?
问问题
1755 次
3 回答
5
您不需要使用其他第三方库来执行此操作,您可以像这样修改TabView 类(在 TabPageIndicator 中)(假设您希望在整个应用程序中使用相同的字体):
private class TabView extends TextView {
private int mIndex;
public TabView(Context context) {
super(context, null, R.attr.vpiTabPageIndicatorStyle);
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
// Re-measure if we went beyond our maximum size.
if (mMaxTabWidth > 0 && getMeasuredWidth() > mMaxTabWidth) {
super.onMeasure(MeasureSpec.makeMeasureSpec(mMaxTabWidth, MeasureSpec.EXACTLY), heightMeasureSpec);
}
}
public int getIndex() {
return mIndex;
}
public TabView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public TabView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public TabView(Context context) {
super(context);
init();
}
private void init() {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/myFont.ttf"); // setting a custom TypeFace
setTypeface(tf);
}
于 2013-01-09T22:22:02.593 回答
3
无需使用第三方库,也无需更改ViewPagerIndicator
库。
TabPageIndicator
有一个ViewGroup
包含 tabView
的子项,因此您可以使用此代码更改字体:
ViewGroup vg = (ViewGroup) indicator.getChildAt(0);
int vgChildCount = vg.getChildCount();
for (int j = 0; j < vgChildCount; j++) {
View vgChild = vg.getChildAt(j);
if (vgChild instanceof TextView) {
((TextView) vgChild).setTypeface(YOUR_FONT);
}
}
于 2014-02-14T18:01:40.367 回答
0
所以我有点粗暴地强迫我让它工作,使用一个名为 Oak 的库(TextViewWithFont 所在的位置),并将 PagerIndicator 传递给这个方法:
private static void changeFonts(ViewGroup root, Activity a, String typeface) {
Typeface tf = TextViewWithFont.getStaticTypeFace(a, typeface);
for (int i = 0; i < root.getChildCount(); i++) {
View v = root.getChildAt(i);
if (v instanceof TextView) {
((TextView) v).setTypeface(tf);
} else if (v instanceof ViewGroup) {
changeFonts((ViewGroup) v, a, typeface);
}
}
}
public static void setTabPageIndicatorFont(ViewGroup root, Activity a) {
changeFonts(root, a, "DINCondBold.otf");
}
橡树如果有人感兴趣:http ://willowtreeapps.github.com/OAK/
如果有人有更好的解决方法,我很想得到第二个意见。
于 2013-01-09T16:34:59.390 回答