Json数组将包含字符串数据列表。 JsonArray的每个元素都有不同的语言。如何在android中找到该语言并设置字体。
例如[“tamil-font data”,“english-font-data”,“Hindi data”]就像这样。
答案 0 :(得分:0)
Typeface face = Typeface.createFromAsset(getAssets(),"fonts/epimodem.ttf"); tv.setTypeface(face);
2.3如果您需要在TextView的XML属性中更改文本样式linke粗体或斜体:
android:textStyle =“italic”
android:typeface =“serif”
提示:如果需要多次使用相同的字体,请重复使用Typface变量以避免开销。