I want to change the font of my custom toolbar.
My problem is that this isn't a static textview. I tried to use a Spannable String like this:
SpannableString s = new SpannableString("My Title");
s.setSpan(new TypefaceSpan(this, "font.otf"), 0, s.length(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
collapsingToolbarLayout.setTitle(s);
But it won't works :-( In the pics you can see how it looks like...
http://www.directupload.net/file/d/4066/ye8tcshb_png.htm
http://www.directupload.net/file/d/4066/oh7t6ddv_png.htm
Thanks for answering :-)