TextView with different fonts and styles?

android, textview

Solution

You can do this using:

textView.setText(Html.fromHtml("<b>myLogin</b> <i>logout</i>"));

For more options, look into `SpannableString`: Link

With `SpannableString`, you can apply multiple formatting to a single string.

This article will be very helpful to you: Rich-Style Formatting of an Android TextView

Problem

Is it possible to have texts with different sizes, font-types or styles in the same `TextView` ? Something like this: | myLogin logout |

Original source

Related problems