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)? Any help please.

link|improve this question

44% accept rate
1  
download the digital font and set to your text view font.downloadatoz.com/font,24267,digital-7.html – Padma Kumar Feb 14 at 12:12
Hello Padma Kumar It seems like a textual file right? How can I make it available to my application. Any folder need to be created in the res folder. Please help. And – Bamadeva Feb 14 at 12:39
feedback

1 Answer

up vote 7 down vote accepted

//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 :-)

link|improve this answer
hi Padma, Please how can I make all textual file which I downloaded from here available to my application? Thanks for all your valuable time to help me – Bamadeva Feb 14 at 12:57
@user11851 click the download image @ bottm font.downloadatoz.com/… – Padma Kumar Feb 14 at 12:59
@user11851 check my edited post – Padma Kumar Feb 14 at 13:02
1  
Thank you so much. Let me check it out – Bamadeva Feb 14 at 13:03
1  
Yes now it works fine boss. Thanks a lot for your information. Chala Bagaundi! – Bamadeva Feb 15 at 14:56
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.