You need a special font for the language. Check this out for custom font in android ListView
Code for setting custom font in TextView:
Suppose you have the font your_font.ttf in the fonts folder in the assets folder :
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/your_font.ttf");
TextView tv = (TextView) findViewById(R.id.CustomFontText);
tv.setTypeface(tf);
source
share