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);