Home > Android > Android: Adding styling to a text (bold italic etc..)

Android: Adding styling to a text (bold italic etc..)

January 13th, 2010 mat Leave a comment Go to comments

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.

styled android text

styled and regular android text



Bookmark and Share
Categories: Android Tags: , ,
  1. vani
    June 8th, 2010 at 18:17 | #1

    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

  1. No trackbacks yet.
// unused langs // // // //