我开发报纸的应用程序。 我想从一个RSSFeed中的数据,我想与地区语言一个ListView的方式来显示数据。 这怎么能在android系统来完成?
Answer 1:
您需要使用特定的字体的语言。 检查这对Android中的ListView自定义字体
代码自定义字体设置为TextView的:
假设你拥有资产文件夹下的Fonts文件夹的your_font.ttf字体:
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/your_font.ttf");
TextView tv = (TextView) findViewById(R.id.CustomFontText);
tv.setTypeface(tf);
文章来源: Want to display data in Indian Regional language(Telugu,Hindi,Tamil and Malayalam) from RSSFeed in android? [closed]