我想使用TextSwitcher
而不是TextView
,因为有可用的动画,但有人知道如何使用自定义Typeface
作为文字吗?我不想使用默认字体。
答案 0 :(得分:5)
只需为每个孩子android:fontFamily
使用TextView
属性。
<TextSwitcher . . .>
<TextView
android:fontFamily="..."
. . . />
<TextView
android:fontFamily="..."
. . . />
</TextSwitcher>
TextSwitcher
将使用您指定的字体系列(字体)在两个TextView
子项之间切换。