- Android:add helvetica neue font in application
- place the TTF file in the ./assets directory (create it if it doesn’t exist yet).
- 1. TextView txt = (TextView) findViewById(R.id.custom_font);
- 2. Typeface font = Typeface.createFromAsset(getAssets(), "<font file name>.ttf");
- 3. txt.setTypeface(font);