Skip to content

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

by mat on January 13th, 2010

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

3 Comments
  1. vani permalink

    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

  2. Lacy permalink

    Thanks, useful info.

  3. Michael permalink

    Thanks very much. This is the only Gridview I got working now.

    This is my res/layou/main.xml:

    and this is how I call it in the Activity:
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    DisplayMetrics metrics = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(metrics);

    GridView gridview = (GridView)findViewById(R.id.gridView1);
    gridview.setAdapter(new MonthAdapter(this, 11, 2011, metrics));

    gridview.setOnItemClickListener(new OnItemClickListener() {
    public void onItemClick(AdapterView parent, View v, int position, long id) {
    Toast.makeText(CanTimeActivity.this, “” + position, Toast.LENGTH_SHORT).show();
    }
    });

Leave a Reply

Note: I am currently writing my thesis so probably wont have time to reply to your comment
Note: XHTML is allowed. Your email address will never be published.

Subscribe to this comment feed via RSS