I'm trying to implement a custom textview that uses my own custom font.

is there a way to set the typeface before doing a Super.onDraw()?

So as to replace the usual font to the custom font that I want to use.

Something like:

protected void onDraw(Canvas canvas)
{
    Typeface font1 = Typeface.createFromAsset(context.getAssets(), "fonts/myfonts.ttf");
    this.setTypeface(font1);
    this.setTextSize(18);
    super.onDraw(canvas);
}

I know the above code won't work.

Or do I have no choice but to use drawText() to do so?

link|improve this question

feedback

2 Answers

It's a very bad practice to create new Typeface object on every time when your onDraw method is called. Such things as font set up should be done in the class constructor but not on every time your view is being drawn.

link|improve this answer
feedback
up vote 1 down vote accepted

Oh my bad, it actually does change the font.

Just that it didn't show up on the preview on Eclipse but it does show on the emulator.

Problem solved.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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