I am trying to import a font. Looked for some tutorials online and used the instructions. So far I've imported the font onto the assets folder. This is the code that I am using to declare my font type.

Typeface localTypeface1 = Typeface.createFromAsset(getAssets(), "arial.ttf");

I keep getting null pointer exception when I call it.

TextView txtTab = new TextView(this);
txtTab.setTypeface(localTypeface1);

What could be the problem ? This is the exact error in logcat.

11-17 13:10:41.024: E/AndroidRuntime(2262): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{se.copernicus.activity/se.copernicus.activity.Secondactivity}: java.lang.NullPointerException
11-17 13:10:41.024: E/AndroidRuntime(2262): at android.content.ContextWrapper.getAssets(ContextWrapper.java:74)

This is line 74

Typeface localTypeface1 = Typeface.createFromAsset(getAssets(), "arial.ttf");

enter image description here

link|improve this question

Note: I tried importing from "fonts/arial.ttf" first since it didn't work I changed to "arial.ttf" – Vinoth Nov 17 '11 at 7:48
feedback

3 Answers

up vote 1 down vote accepted

What I have seen is that, Android cannot read some ttf files. (maybe the file is corrupted?)

I was not able to use a ttf file in my app but another app in my phone was able to read the same ttf file. (I used the same code as above, tried cleaning, replacing it diff folders nothing seemed to work)

Ended up using a different font file altogether. (Had no issues with this file with the same code!)

link|improve this answer
feedback

Did you try moving your font directly into assets? (Not in the fonts folder), and getting rid of the fonts folder?

link|improve this answer
Yes I did try that way. If you can see in the image I've posted there are two entries for arial.ttf. One is from the assets/fonts/arial.ttf folder and the other is assets/arial.ttf. – Vinoth Nov 17 '11 at 7:57
Ah ok, the hierarchy view is not always that clear :) But have you tried deleting the folder fonts completely? It could mess things up at loading time – Guillaume Nov 17 '11 at 8:01
will do that and try :) – Vinoth Nov 17 '11 at 8:14
feedback

Try cleaning (Project -> Clean...) your project

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.