I am developing an application which needs to display Malayalam text on the screen, on a LabelField. The text is now displaying like the following
'ജ';'യ';'ര';'ാ';'ജ';"
But I want to it as the follwing
ജയരാജ
How to do that?
I am developing an application which needs to display Malayalam text on the screen, on a LabelField. The text is now displaying like the following
'ജ';'യ';'ര';'ാ';'ജ';"
But I want to it as the follwing
ജയരാജ
How to do that?
You need to convert your text to javascript escapes of the format \u0987 and then this can be shown on blackberry devices.
Paste your string in above website in mixed input and see the java script escapes and you need to convert corresponding string to unicode using String.replace i think..
Convert this into ASCII format of any Malayalam font and set this Malayalam font as the default one for the application. I think this will solve your problem.