To set a custom font in an Android app
To do this, simply create the assets / folder in the root of the project and place the fonts in your objects (in the form of TrueType or TTF). For example, you can create assets / fonts / and place TTF files there:
TextView tv=(TextView)findViewById(R.id.custom);
Typeface face=Typeface.createFromAsset(getAssets(), "fonts/HandmadeTypewriter.ttf");
tv.setTypeface(face);
, -.