So I have been seeking for font like this one:
And without any results. Can someone give me a hint where could I find this font for my Android application?
So I have been seeking for font like this one:
And without any results. Can someone give me a hint where could I find this font for my Android application?
Here are a few fonts you could use -
Download Links -
P.S. StackOverflow isn't a forum! You should typically do a lot of research before asking questions.
try below code:-
Typeface tf = Typeface.createFromAsset(getAssets(),
"fonts/Arial.otf");
TextView tv = (TextView) findViewById(R.id.CustomFontText);
tv.setTypeface(tf)
download below font and put into your assets folder.
Download Arial font in ttf file formate and put in asset folder.you also use DS-DIGIB.TTF font file.
public void setFontTextView(Context c, TextView name) {
Typeface font = Typeface.createFromAsset(c.getAssets(),"fonts/Arial.ttf");
name.setTypeface(font);
}