Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Android: Want to set custom fonts for whole application not runtime

I know there is way of doing it in the following way. But I want to apply the font to the entire application. Is that possible?

TextView txt = (TextView) findViewById(R.id.customfont);
Typeface font = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf");
txt.setTypeface(font);
share|improve this question

marked as duplicate by SERPRO, IceMAN, Kjuly, Andro Selva, Kate Gregory Nov 26 '12 at 17:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

Its not possible to give one for the entire application however, if you look at the accepted response on:

Android: Want to set custom fonts for whole application not runtime

they have a solution that makes it easier to set it to any view easier :) Another method is creating a custom widget to replace TextView, but if you require the font on other widgets too, it gets quite messy!

share|improve this answer

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