Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 xml 中定义了一个 textview,现在我正在以编程方式设置字体,如下所示:
textView.setTypeface(APP_FONT_REGULAR); // which is custom font in assests (.ttf file).
现在我已经android:textStyle="bold"在 xml中设置了
android:textStyle="bold"
但它没有应用粗体?
我需要应用自己的 Typface 并将其设置为粗体的原因是什么。
我需要应用我自己的字体并将其设置为粗体。
当你setTypeface()这样打电话时,你可以设置外观
setTypeface()
textView.setTypeface(APP_FONT_REGULAR, Typeface.BOLD);
它解决了你的问题。看看这个。