Is it possible to show digital texts in TextView in Android?

后端 未结 1 1647
孤街浪徒
孤街浪徒 2021-02-06 15:12

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

1条回答
  •  时光说笑
    2021-02-06 15:24

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

    0 讨论(0)
提交回复
热议问题