publi class Util{
public static void setFont(TextView textview, String font) {
Typeface myTypeface = Typeface.createFromAsset(textview.getContext().getAssets(), font);
textview.setTypeface(myTypeface);
}
}
........................................................
In side Activity Class the following code
put HelveticaNeue-Medium.ttf font type into assets
assets->create folder fonts ->HelveticaNeue-Medium.ttf
TextView name=(TextView)findViewById(R.id.name);
//set font
Util.setFont(name, "fonts/HelveticaNeue-Medium.ttf");
public static void setFont(TextView textview, String font) {
Typeface myTypeface = Typeface.createFromAsset(textview.getContext().getAssets(), font);
textview.setTypeface(myTypeface);
}
}
........................................................
In side Activity Class the following code
put HelveticaNeue-Medium.ttf font type into assets
assets->create folder fonts ->HelveticaNeue-Medium.ttf
TextView name=(TextView)findViewById(R.id.name);
//set font
Util.setFont(name, "fonts/HelveticaNeue-Medium.ttf");
No comments:
Post a Comment