Style to apply the same bold italics are just as in the Text View.

Asked 1 years ago, Updated 1 years ago, 74 views

Is there a way to apply bold or italic style to text view with java code instead of XML? Android:textStyle in xml.

android android-textview

2022-09-21 16:03

1 Answers

textView.setTypeface(null, Typeface.BOLD_ITALIC);
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
textView.setTypeface(null, Typeface.NORMAL);

Are you talking about this?


2022-09-21 16:03

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.