我正在为报纸开发应用程序。我想从 RSSfeed 获取数据,并且想以 ListView 方式使用区域语言显示数据。这怎么能在android中完成?
问问题
1133 次
1 回答
2
您需要为一种语言使用特定的字体。在 android ListView 中检查自定义字体
将自定义字体设置为 TextView 的代码:
假设您在assets文件夹下的fonts文件夹中有your_font.ttf字体:
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/your_font.ttf");
TextView tv = (TextView) findViewById(R.id.CustomFontText);
tv.setTypeface(tf);
于 2012-05-21T15:13:16.273 回答