I want to use external fonts in my app. I have tried adding new fonts using AssetManager but it did not work. Below is my code:
Typeface face;
face = Typeface.createFromAsset(getAssets(), "font.otf");
textview.setTypeface(face);
but its not showing the text...
Please help me with this.