Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to have multiple Typefaces in the same TextView?

I know how to change text attributes and color for a TextView, but is it possible to have multiple Typefaces in the same TextView?
For instance, can I use both Droid Sans and Droid Mono in the same TextView at the same time?

If so, how?

like image 561
user746253 Avatar asked Aug 12 '11 07:08

user746253


1 Answers

Actually it looks like you can do it with the help of a Spannable:

String text = "This is an example";

Spannable s = new SpannableString(text + " text");
s.setSpan(new TypefaceSpan("monospace"), 0, text.length(),
            Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
s.setSpan(new TypefaceSpan("serif"), text.length(), s.length(),
            Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

((TextView)findViewById(R.id.my_text_view)).setText(s);
like image 80
TofferJ Avatar answered Nov 06 '22 03:11

TofferJ