android - Native typeface cannot be made -
i trying set custom font in android studio..i have kept .ttf font file inside src-main-assets-fonts folder , typing code in activity-
typeface avenirdemifont ; avenirdemifont = typeface.createfromasset(this.getassets(), "avenirdemifont.ttf"); textview textview = (textview) findviewbyid(r.id.textview5); textview.settypeface(avenirdemifont);
i getting following error "native typeface cannot made"
it seems forgot add "fonts" directory path. try this:
typeface.createfromasset(this.getassets(), "fonts/avenirdemifont.ttf");
Comments
Post a Comment