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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -