Skip to main content

Posts

Showing posts with the label font face

Android App Using External font face(Custom)

Create a new Project. Make a new folder named ‘Font’ into your assets folder Paste the font file into this folder Now add the below written lines into your Java file.        textview =(TextView)findViewById(R.id. text1 );        Typeface font = Typeface. createFromAsset (getAssets(), "font/Maximum.ttf" );        textview .setTypeface(font);