我在xml中定义了一个textview,现在我正在以编程方式设置Typeface:
textView.setTypeface(APP_FONT_REGULAR); // which is custom font in assests (.ttf file).
现在我在xml中设置了android:textStyle="bold"
但它没有应用粗体?
我需要应用自己的Typface并将其设置为粗体的原因是什么。
答案 0 :(得分:1)
我需要应用自己的Typface并将其设置为粗体。
您可以在拨打setTypeface()
时设置外观
textView.setTypeface(APP_FONT_REGULAR, Typeface.BOLD);
它解决了你的问题。看看吧。