Hello: Who dabbled with fonts and put them in the application: I do this: folder: assets/fonts/mistra.ttf in the class to which xml is attached I write
TextView tv; Typeface face; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.a1); tv = (TextView) findViewById(R.id.eda); face = Typeface.createFromAsset(getAssets(), "fonts/mistral.ttf"); tv.setTypeface(face); } and I see the following error: native typeface cannot be made refers to the string
face = Typeface.createFromAsset(getAssets(), "fonts/mistral.ttf");
src/main/assets/mistral.ttf, and use its"mistral.ttf". Also try other fonts. - Vyacheslav Martynenko