Hi friends,
In my application there is a requirement that the text values should be shown in a digital text format can it be possible to do in T
//download the font from the this link and create a folder as fonts inside your assets and put your font in that folder
or download direct link
Typeface tf = Typeface.createFromAsset(getAssets(),"fonts/digital_07.otf");
TextView tv = (TextView) findViewById(R.id.digitalclock);
tv.setTypeface(tf);
EDIT :
I attached the project link also
Enjoy :-)