How to change the font on the TextView? A1. First download the .ttf file of the font you need ( arial.ttf ). Place it in the assets folder(Inside assets folder create new folder named fonts and place it inside it). If txtyour is the textviews you want to apply the font , use the following piece of code, Typeface type = Typeface . createFromAsset ( getAssets (), "fonts/Kokila.ttf" ); txtyour . setTypeface ( type ); A2. Typeface tf = ...