Is It Possible To Show Digital Texts In Textview In Android?
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 TextView (How digital clock shows)? A
Solution 1:
//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
Typefacetf= Typeface.createFromAsset(getAssets(),"fonts/digital_07.otf");
TextViewtv= (TextView) findViewById(R.id.digitalclock);
tv.setTypeface(tf);
EDIT :
I attached the project link also
Enjoy :-)
Post a Comment for "Is It Possible To Show Digital Texts In Textview In Android?"