如何将PagerTabStrip的TextStyle设置为Bold?

时间:2012-11-09 12:04:50

标签: android styles android-viewpager

我在PagerTabStrip中使用ViewPager来显示每个页面的标题。这是我的XML代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:background="@drawable/bg">

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
    >
    <android.support.v4.view.PagerTabStrip
            android:id="@+id/pager_title_strip"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:background="#33b5e5"
            android:textColor="#a4c639"
            android:paddingTop="4dp"
            android:paddingBottom="4dp" />
    </android.support.v4.view.ViewPager>

</RelativeLayout>

我想在PagerTabStrip中将textStyle设置为粗体,如下所示: android:textStyle="bold"。但这在PagerTabStrip中是不可能的。好像文本只有textcolor属性。我可以将样式设置为粗体的方式是什么?

3 个答案:

答案 0 :(得分:43)

你需要做的是为文本创建一个样式,然后使用android:textAppearance属性......

也许是这样的:

 <style name="PagerTabStripText">
      <item name="android:textSize">14sp</item>
      <item name="android:textStyle">bold</item>
      <item name="android:textColor">#a4c639</item>
 </style>

然后在你的PagerTabStrip XML中执行以下操作:

 <android.support.v4.view.PagerTabStrip
        android:id="@+id/pager_title_strip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="top"
        android:background="#33b5e5"
        android:paddingTop="4dp"
        android:paddingBottom="4dp" 
        android:textAppearance="@style/PagerTabStripText"/>

答案 1 :(得分:4)

PagerTabStrip并不支持textAppearance。

像@Justin上面说的那样,但是在xml上放了:

style="@style/PagerTabStripText"

不是:

android:textAppearance="@style/PagerTabStripText"

答案 2 :(得分:2)

如果您想要将中心标签标题设置为与其他标签不同,那么您需要使用反射:

try {
    final Class pagerTitleStripClass = PagerTitleStrip.class;
    final Field mCurrTextField = pagerTitleStripClass.getDeclaredField("mCurrText");
    mCurrTextField.setAccessible(true);

    // mTitle is my class's PagerTabStrip member variable
    final TextView mCurrText = (TextView) mCurrTextField.get(mTitle);
    mCurrText.setTypeface(Typeface.DEFAULT_BOLD);
} catch (final Exception e) {
    Log.w(TAG, "Exception when styling currently selected title!", e);
}

不幸的是,当Android Support Library的更新被释放时(因为PagerTitleStrip类来自的地方),此解决方案可能不再起作用。特别是,此代码示例正在使用revision 20