[android-developers] Re: Problem while sending unicode character via SMS

2013-04-02 Thread vong borey
Hi Andu, I am very new to android, and face the same problem. Reading your post I am very happy to follow but I really don't know to use that class for sending. Could you please give me some tips? Thank in advance, On Tuesday, December 29, 2009 4:02:22 PM UTC+7, andu wrote: How are you

[android-developers] Re: Problem while sending unicode character via SMS

2010-01-28 Thread andu
How are you I would like to thank you for your support. I get some code that enables me to send unicode character. I get it for the following site http://since2006.com/blog/android-send-unicode-message/# It may help others. Thank you again Andu On Jan 25, 10:58 pm, Frank Weiss

[android-developers] Re: Problem while sending unicode character via SMS

2010-01-24 Thread andu
Hi How are you As you have suggested me I have installed the Ethiopian font in my device. And I think the font is installed properly. But still the SMS doesn't work. I don't know which part I can check. The message still replaces unicode characters by space characters in the receiving side. can

Re: [android-developers] Re: Problem while sending unicode character via SMS

2010-01-22 Thread Frank Weiss
If the received character is U+0020 instead of U+1200, then chances are that the message is being restricted to 7-bit somewhere along the line. This is somewhat alluded to in the SDK Reference

[android-developers] Re: Problem while sending unicode character via SMS

2010-01-21 Thread andu
Hello How are you I have tried to send the sms with unicode character to the android phone itself and accept the message by my application (using BroadcastReceiver ...) to view its content. but still the unicode character is displayed as space. And I tried to see its code using codePointAt( )

[android-developers] Re: Problem while sending unicode character via SMS

2009-12-31 Thread andu
To send the message I have used the following function: public boolean sendSMSMessage(String compiledContent, String DistinationAddress) { String receiverPhoneNumber = DistinationAddress; String messageCenterPhoneNumber = ; SmsManager smsMgr

Re: [android-developers] Re: Problem while sending unicode character via SMS

2009-12-31 Thread Frank Weiss
The code looks good AFAICT. Please give the actual before/after characters that are coming out wrong. For example, try the Ethiopian syllable qu, U+1241. If it's coming across as a box followed by an A, then the receiver has gotten two characters, U+0012 and U+0041. I really need to see the