Android Tamil字体之间的英文单词

前端之家收集整理的这篇文章主要介绍了Android Tamil字体之间的英文单词前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个TextView有一个巨大的文本之间,我有一个tamil字,我知道如何嵌入tamil字体在单独的文本视图.但我需要英文单词之间的tamil单词请提前感谢

我在textview中的部分文字

Seasonal messages like welcome (நல்வரவு) is used in Kolam.
Volunteering to draw kolam at temple is sometimes done when a
devotee’s

解决方法

尝试通过setTypeface将此 Akshar.ttf字体设置为您的TextView,它会使英语和泰米尔语都不起作用.

这是结果:

或者,寻找支持两种语言的类似字体.

你的第二个解决方案是使用SpannableStringBuilder来使用这个小的Tamil文本部分的图像.

自定义字体设置为TextView的代码

假设您在资产文件夹中的fonts文件夹中有Akshar.ttf字体:

Typeface tf = Typeface.createFromAsset(getAssets(),"fonts/Akshar.ttf");               
    TextView tv = (TextView) findViewById(R.id.CustomFontText);
    tv.setTypeface(tf);
    tv.setText("Seasonal messages like welcome (நல்வரவு) is used in Kolam. Volunteering to draw kolam at temple is sometimes done when a devotee's");
原文链接:https://www.f2er.com/android/312482.html

猜你在找的Android相关文章