You need to create fonts folder under assets folder in your project and put your TTF files into it. Then in your Activity onCreate()
Typeface typeface = Typeface.createFromAsset(this.getAssets(), "fonts/Roboto-Bold.ttf");
(or)
Context context=this;
Typeface typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Bold.ttf");
//In your TextView
TextView address=(TextView)findViewById(R.id.address);
address.setTypeface(typeface
);
0 comments:
Post a Comment