I'm trying to use custom fonts It works on emulator with no isses.

But on Smsung Galaxy Tab is throwing following error: native typeface cannot be made

Here is my code:

               public static Typeface typeface;
             // -----define typeface

    typeface = Typeface.createFromAsset(getAssets(), "fonts/Verdana.TTf");
    Typeface.class.getField("DEFAULT").setAccessible(true);
                          ---------------------
        lblBrandCategory1.setTypeface(GuestActivity.typeface, 4);


            anyone knows the solution???
link|improve this question
Did you find a solution to this ? – Mina Samy Apr 19 '11 at 12:26
no.. I'm still searching...so finally I'm using default fonts. – Nayanesh Gupte Apr 20 '11 at 9:47
feedback

1 Answer

I had this (on a Galaxy Tab as it happens) doing pretty much exactly what you're doing. Turned out to be a case-sensitivity issue for me, e.g. filename was all lowercase and I capitalized the .ttf filename in the java code.

So presumably that means that you get this error whenever the ttf can't be found (so check your path is good as well).

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.