How To Show Hindi Text In Android?
I am trying to paste Hindi characters in an array with elements like String[] arr = {'आपका स्वागत है','आपका स्वागत है'}; but its giv
Solution 1:
Switch your text encoding to UTF-8.
In Eclipse go to Window -> Preferences, select General -> Workspace. From the Text file encoding dropdown, select UTF-8.
Solution 2:
Thanks i found the solution...
- create an array under the value folder
- Use the font that support Hindi under the assets folder
textview.setTypeface(Typeface.createFromAsset(getAssets(),"fonts/Hindi.ttf"));
its working fine...
Solution 3:
You need UTF-8 encoding, not Cp1252, and Unicode.
Solution 4:
Thanks i found the solution...
Create an array under the value folder
Use the font that support Hindi under the assets folder
textview.setTypeface(Typeface.createFromAsset(getAssets(),"fonts/Hindi.ttf"));
its working fine...
Post a Comment for "How To Show Hindi Text In Android?"