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
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?
© 2024 OneMinuteCode. All rights reserved.