3

I am developing an application for newspaper. I want to get the data from a RSSfeed and I want to display the data in a ListView manner with Regional Languages. How can this be done in android?

hippietrail
  • 15,848
  • 18
  • 99
  • 158

1 Answers1

2

You need to use specific font for a language. Check this for custom font in android ListView


Code for setting custom font to TextView:

Assuming you have the your_font.ttf font in fonts folder under assets folder:

 Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/your_font.ttf");               
    TextView tv = (TextView) findViewById(R.id.CustomFontText);
    tv.setTypeface(tf);
   
Community
  • 1
  • 1
Imran Rana
  • 11,899
  • 7
  • 45
  • 51