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???