如何改变PagerTabStrip的字体
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何改变PagerTabStrip的字体相关的知识,希望对你有一定的参考价值。
我正在使用带有PagerTabStrip的ViewPager,我需要设置自定义字体(typeface)
,但是PagerTabStrip没有.setTypeFace
函数!
这是我的XML代码:
<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="#FFFFFF" />
</android.support.v4.view.ViewPager>
据this link说,我找到了一个可以解决我的问题的解决方案。
获取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)
}
}
但我不明白这意味着什么。
我的布局是:
我想将标题选项卡更改为另一种字体样式,如下所示:
答案
你需要做的是为文本创建一个样式,然后使用android:textAppearance属性...
像这样的东西:
<style name="PagerTabStripText">
<item name="android:textStyle">italic</item>
</style>
您的PagerTabStrip XML将如下所示:
<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="#FFFFFF"
android:textAppearance="@style/PagerTabStripText" />
另一答案
您可以将font.ttf放在assets / fonts /文件夹中并获取字体实例
Typeface fontTypeFace= Typeface.createFromAsset(getContext().getAssets(),
"fonts/font.ttf");
for (int i = 0; i < pagerTabStrip.getChildCount(); ++i) {
View nextChild = pagerTabStrip.getChildAt(i);
if (nextChild instanceof TextView) {
TextView textViewToConvert = (TextView) nextChild;
textViewToConvert.setTypeface(fontTypeFace)
}
}
另一答案
将.ttf文件放在assets文件夹中,并在onCreate方法中使用此代码
fontTypeFace= Typeface.createFromAsset(getAssets(),
"fontawesome-webfont.ttf");
tabs = (PagerSlidingTabStrip) findViewById(R.id.tabs);
tabs.setTypeface(fontTypeFace,0);
以上是关于如何改变PagerTabStrip的字体的主要内容,如果未能解决你的问题,请参考以下文章
android: 如何从 Android Support Lib 版本 4 向 PagerTabStrip 添加图标/drawables?