I am aware you can apply a custom TypeFace to a TextView in Android like this:

TextView tv = findViewById(R.id.textview01);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/BLACKROSE.TTF");
tv.setTypeface(tf);

Is there any way possible to do this for a DatePicker?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

After taking a look at the source, the Datepicker widget holds 3 NumberPicker widgets (for day, month, year)which in turn hold a TextView. So you are going have to set the Typeface for the TextView inside the NumberPickers inside the DatePicker.

I think you'll have to get the source for both NumberPicker and DatePicker and modify the source to achieve this, easier said than done I'm afraid.

link|improve this answer
Where can I get the source? – zzzzzzzzzzzzzzzzzzzzzzzzzzzzzz Feb 10 at 1:22
1  
GrepCode, all android source can be found there. DatePicker grepcode.com/file/repository.grepcode.com/java/ext/… NumberPicker grepcode.com/file/repository.grepcode.com/java/ext/… – triggs Feb 10 at 9:51
feedback

Your Answer

 
or
required, but never shown

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