How do you change text to bold in Android? -
how change text/font settings in android textview
? example, how make text bold?
to in layout.xml
file:
android:textstyle
examples:
android:textstyle="bold" android:textstyle="italic"
programmatically method is:
settypeface(typeface tf)
sets typeface , style in text should displayed. note not typeface
families have bold , italic variants, may need use settypeface(typeface, int)
appearance want.
Comments
Post a Comment