I'm using customized fonts in my android app, specifically using Typeface This works fine!
Typeface customFont = Typeface.createFromAsset (getAssets (), "fonts / myfont.ttf");
myTextView.setTypeface (customFont);
myTextView.setText ("Hello");
The problem is that it works on all versions except android L, simply does not change the font.
I have been reviewing the documentation but, although it is mentioned that the default font is new, can not find anything that explains this.
Can anyone help me with this?
Thanks and regards.