SET CUSTOM FONT IN TEXTVIEW
TextView textView1 = (TextView) findViewById(R.id.textView1);
Typeface font = Typeface.createFromAsset(getAssets(),
"Doonga Slash.ttf");
textView1.setTypeface(font);
TextView textView1 = (TextView) findViewById(R.id.textView1);
Typeface font = Typeface.createFromAsset(getAssets(),
"Doonga Slash.ttf");
textView1.setTypeface(font);
No comments:
Post a Comment