Android: Adding styling to a text (bold italic etc..)
Settings the text in android is done by finding the object you wish to change, and then using its setText property. Below shows my code updating a textview by its id score_text to say “boring regular text”
((TextView)this.findViewById(R.id.score_text)).setText("boring regular text \n")
This is good but what if you want to include styling in your text, so bold emphasis or italics. Well it’s very simple we first add the android.text.html include:
import android.text.Html;
and then surround our code in Html.fromHtml() this causes them html styling to modify our text.
((TextView)this.findViewById(R.id.score_text)).setText(Html.fromHtml("excitingand cooltext"
Below shows a screenshot of the regular styling and the html styling in an android application.





Hi
In addition to the text styles(like bold n italic), can we get the list types like bullets and number types.Is there any chance to get the numbers and bullets by adding the respective html tags.
Thank you!
Regards,
Bhavani.G