I am trying to use custom fonts in a textview:
tv=(TextView)findViewById(res);
Typeface font = Typeface.createFromAsset(this.getAssets(), "fonts/font.ttf");
tv.setTypeface(font);
But when I run I get the following error:
W/System.err( 542): java.lang.RuntimeException: native typeface cannot be made
Whats the issue?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…