android how to change font of textview progrmatically

https‮.www//:‬lautturi.com
android how to change font of textview progrmatically
// get the font asset
Typeface face = Typeface.createFromAsset(getAssets(),"fonts/montserrat.ttf");

TextView tv = (TextView) findViewById(R.id.appname);
tv.setTypeface(face);
Created Time:2017-09-09 22:30:07  Author:lautturi