Skip to main content

Set TextView style (bold or italic)

Set TextView style (bold or italic)


A1.TextView for bold or italic.

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

A2.XML

   You can set Directly in XML file in <TextView /> like:

android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"

A3A4A5

Comments