How can I change font type in Android TextView?
You can programatically set the desire font by placing your font file (example.tff) style in Assets/fonts and then give your own string into fontpath variable
String fontPath="fonts/Unkempt-Regular.ttf";
TextView aboutus=(TextView)findViewById(R.id.aboutus);
Typeface type=Typeface.createFromAsset(getAssets(), fontPath);
aboutus.setTypeface(type);