如何将pagertabstrip的文本风格设置为粗体



我正在使用ViewPager中的PagerTabStrip显示每个页面的标题。这是我的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>

我想将TextStyle设置为PagerTabStrip中的BOLD: android:textStyle="bold"。但这在PagerTabStrip中是不可能的。似乎它只有文本的 textcolor属性。我可以将样式设置为粗体的方式是什么?

您需要做的是为文本创建一种样式,然后使用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"/>

pagertabstrip not aceppts textappearance。

就像上面@justin所说的那样,但在xml put上:

style="@style/PagerTabStripText"

不是:

android:textAppearance="@style/PagerTabStripText"

如果您想以不同于其他标题的中心标题样式,则需要使用反射:

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支持库的更新时,该解决方案可能会不再工作(因为那是PagerTitLestrip类来自的位置)。特别是,此代码示例正在使用修订20。

相关内容

  • 没有找到相关文章

最新更新