How to show Malayalam characters in BlackBerry application?
Asked Answered
S

3

7

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

'&#3356';'&#3375';'&#3376';'&#3390';'&#3356';"

But I want to it as the follwing

ജയരാജ

How to do that?

Siddons answered 1/8, 2012 at 7:0 Comment(4)
Check this, #1929388Gaga
I have already check this. Arabic text is displaying but malayalam notSiddons
you try to display unicode fonts or non-unicode fonts?Jacobean
i am looking to display unicode font?Siddons
S
0

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.

Siddons answered 4/9, 2012 at 12:1 Comment(0)
A
1

You need to convert your text to javascript escapes of the format \u0987 and then this can be shown on blackberry devices.

Apostatize answered 3/9, 2012 at 11:9 Comment(2)
I have already tried this but it shows only rectangles on the screenSiddons
\u0987 this is displaying correctly on the device. Can you please tell me how can I display &#3356';'&#3375';'&#3376';'&#3390';'&#3356';"Siddons
A
1

Check unicode converter

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..

Apostatize answered 3/9, 2012 at 11:31 Comment(1)
No this produce rectangle on the screenSiddons
S
0

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.

Siddons answered 4/9, 2012 at 12:1 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.