Thankyou for the suggestion. Can you please provide more info on the
same ?

My current implementation is :

I am using InputConnection class to set the hindi characters typed.
For eg :
            InputConnection ic = getCurrentInputConnection();
            if (ic != null)
            {
                ic.setComposingText(mComposing, 1);  // StringBuilder
mComposing ;
            }

mComposing is used to store all the characters one by one, and then
use
setComposingText to set the text.

Regards,


On Oct 14, 8:16 am, Pragati Ogal Rai <[email protected]> wrote:
> Why do you use android:codes? Did you try creating a string in
> strings.xml corresponding to that text and typing in Hindi directly?
>
> On Oct 12, 3:26 am, Rocks <[email protected]> wrote:
>
>
>
> > I am trying to display the above two Hindi characters "क्ष, त्र" in
> > the text editing area.
> > These characters are a combination of three unicode characters.
> > For eg:
> > In order to display number 9, I use hte following in the xml file :
> > <Key android:codes="57" android:keyLabel="9"/>
>
> > "क्ष" character is a combination of three unicodes --> 0915 094D 0937
> > How should the xml file be modified in order to display the above two
> > hindi characters ?
> > How can I use three unicode values in android:codes in the text
> > editing area ?
>
> > Regards,- Hide quoted text -
>
> - Show quoted text -

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to