以编程方式设置字体并在xml中设置文本样式不起作用

时间:2013-03-21 07:04:08

标签: android textview

我在xml中定义了一个textview,现在我正在以编程方式设置Typeface:

textView.setTypeface(APP_FONT_REGULAR); // which is custom font in assests (.ttf file).

现在我在xml中设置了android:textStyle="bold"

但它没有应用粗体?

我需要应用自己的Typface并将其设置为粗体的原因是什么。

1 个答案:

答案 0 :(得分:1)

  

我需要应用自己的Typface并将其设置为粗体。

您可以在拨打setTypeface()时设置外观

textView.setTypeface(APP_FONT_REGULAR, Typeface.BOLD);

它解决了你的问题。看看吧。