我正在开发一份报纸申请表。我想从RSSfeed获取数据,我想用ListView以ListView方式显示数据。怎么能在android中完成?
答案 0 :(得分:2)
您需要为语言使用特定字体。选中custom font in android ListView
假设您在资源文件夹下的字体文件夹中有 your_font.ttf 字体:
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/your_font.ttf");
TextView tv = (TextView) findViewById(R.id.CustomFontText);
tv.setTypeface(tf);