malayalam font in android?

前端 未结 6 1983
野的像风
野的像风 2020-12-14 12:05

i want to develop an application which contain malyalam text for that i want to add malayalam font.. is this compatible on all android devices.can any one please help me to

6条回答
  •  长情又很酷
    2020-12-14 12:14

    add ur font file in assets folder of your project, then with the help of setTypeface() function set the font for textview. I have't try'd it bt i think u will surely find it helpful.

    Typeface typeFace = Typeface.createFromAsset(getAsset(),"malyalam.fnt");
    

    and then add it to your textview like below

    textView.setTypeFace(typeFace);
    

    hope this will work for u, keeping my fingers crossed :)

提交回复
热议问题