How to get Hindi fonts in Android..?

前端 未结 6 1371
情书的邮戳
情书的邮戳 2020-12-07 05:12

I\'m new to Android field . I have followed the procedure of getting Hindi fonts on emulator but still Hindi characters are appearing in square boxes. Please help me how to

6条回答
  •  盖世英雄少女心
    2020-12-07 05:44

    First of all download hindi font, d the OTF/TTF file you get, save that in asset folder, eclipse has already the folder, if you are using android studio, then make a new folder in project/app/src/main.

    Then in java file, suppose you have to apply your font on TextView t1, use the code..

    Typeface mytypeface= Typeface.createFromAsset(getAssets(),"font-file_name.TTF");
    t1.setTypeface(mytypeface);
    

提交回复
热议问题