I am working in android. I am designing an application which shows Hindi words in text view.
I am using this code.
String str="दिव्या";
TextView txtview_name=(TextView)findViewById(R.id.textViewmyView);
final Typeface customF = Typeface.createFromAsset(this.getAssets(), "Hindi-SARAL1.TTF");
txtview_name.setTypeface(customF);
txtview_name.setText(str);
I used font in my resourses like DroidHindi.ttf, DroidSansFallback.ttf etc. this is showing some words correctly like as समर, राजा etc , but this does not show correctly words like as दिव्या So please suggest me what .ttf i should use so each word of Hindi show correctly.