In an application I'm building, I'm trying to systematically change the font of every piece of text to a custom font. Does anyone know whether it's possible to apply styles such as custom typefaces to the title of a dialog?

So far, I haven't been able to find a way, and so my best bet seems to be to use an AlertDialog, and just use a textview as my title in a layout that I inflate. This is a bit long winded, so if there's a direct way to customise the style of the dialog's title, that would save some time!

link|improve this question

65% accept rate
feedback

1 Answer

try using/inheriting DialogWindowTitle and/or @style/TextAppearance.DialogWindowTitle see

http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=core/res/res/values/styles.xml;h=d7b654e49809cb97a35682754b1394af5c8bc88b;hb=HEAD

Good Luck

jse

link|improve this answer
unfortunately you can't set a custom typeface in XML (as far as I've been able to tell, anyway), so I'm not sure that'll help.. – tiswas Jan 4 '11 at 12:36
feedback

Your Answer

 
or
required, but never shown

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