将TextSwitcher与自定义字体一起使用

时间:2012-07-01 21:34:52

标签: android fonts textview typeface

我想使用TextSwitcher而不是TextView,因为有可用的动画,但有人知道如何使用自定义Typeface作为文字吗?我不想使用默认字体。

1 个答案:

答案 0 :(得分:5)

只需为每个孩子android:fontFamily使用TextView属性。

<TextSwitcher . . .>
    <TextView
        android:fontFamily="..."
        . . . />

    <TextView
        android:fontFamily="..."
        . . . />

</TextSwitcher>

TextSwitcher将使用您指定的字体系列(字体)在两个TextView子项之间切换。