On using external font in android my Application closes autometically

449 Views Asked by At

I am trying external font in my application but Application crash automatically.

I am using the code

Typeface face;

face = Typeface.createFromAsset(getAssets(), "font.otf"); 

textview.setTypeface(face); 

its working but if i switch this activity more frequently then it crashes..

Give me solution....

Please help me...

1

There are 1 best solutions below

3
On

Enclose this code in try { } catch { } block and see what exception it throws. This will help you a lot. Also you can just run the app in debug mode and when it crashes, you will see the e var in the variables tab.