Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an application in Android Tablet. Now in my application i want to show Hindi text for all EditText and Buttons and also i need to get data from Oracle database and need to store in Sqlite.

I know how to save and retrieve data from Sqlite but only thing need to show Hindi Text in android.

I already checked How to show Hindi text in android? but need to know clearly what should i have to save in assets and values folder i.e. Hindi font..

Some words are not displaying properly. Can any one suggest me the file(Hindi font) which shows all words correctly in Hindi?

share|improve this question
possible duplicate of How to show Hindi text in android? – cHao Oct 17 '11 at 15:36

3 Answers

up vote 3 down vote accepted

your custom apps you will most probably want to use your own font. This post will show you how you can do so. This is a simple example... create a folder in the root of your project called assets/fonts/ then paste the TTF font file (in this case Verdana.ttf). Then, if you want to apply that font to, say a TextView, do the following

TextView im = (TextView ) findViewById(R.id.im);
Typeface face=Typeface.createFromAsset(getAssets(),
                                          "fonts/hindi.ttf");
        im.setTypeface(face);
        im.setText("Hindi font");
share|improve this answer
i downloaded vijyapati.ttf file and added to font folder in the assets but i am not getting Hindi font for my TextView i am getting only rectangle boxes – Kiran_b Oct 17 '11 at 6:54
i have update it – Nik Patel Oct 17 '11 at 7:04
By placing mangal.ttf i got Hindi font for TextView, thanks for your help Dr.nik is there any chance to get keyboard characters in Hindi... – Kiran_b Oct 17 '11 at 7:28
ok,what about Keyboard Characters in Hindi – Kiran_b Oct 17 '11 at 7:30
show 6 more comments

On Android phones, if you install a Hindi (Devanagari) font - you will then see glyphs for the characters but the letters won't join up or form conjuncts properly, so all but the simplest text will be unreadable. This is due to the lack of proper complex text layout (CTL) or rendering support in Android phones - I don't know if the situation is better on Android tablets.

Sadly, Indic text doesn't even work properly in the Android 4.0 (ICS) emulator even though it was supposed to be fixed there.

share|improve this answer

you can use Unicode ...for क ख

TextView tv=(TextView)findViewById(R.id.textViewmyView);

final Typeface tf = Typeface.createFromAsset(this.getAssets(), "Hindi-SARAL1.TTF");

tv.setText(Html.fromHtml("&# 2325;&# 2326;"));

tv.setTypeface(tf);

use Unicode value continues no gap....

this code is working for all alphabets of Hindi except.क्ष,त्र and ज्ञ for this you can use......

for क्ष:- tv.setText("9");

for त्र :- tv.setText("5");

and for ज्ञ:- tv.setText(")");

after that

tv.setTypeface(tf);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.