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

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -