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

link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

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);
link|improve this answer
Nifty! Thanks! :) – user746253 Aug 12 '11 at 14:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.