worry wrote:I am trying to sending SMS (real phone to real phone) via:
Using java Syntax Highlighting
SmsManager sm = SmsManager.getDefault();
sm.sendTextMessage(phoneNumber, null, text, null, null);
Parsed in 0.030 seconds, using
GeSHi 1.0.8.4
Where
text is a
String, containing unicode (cyrillic) characters.
The problem is all Unicode characters recieved as blank characters.
Any suggestions?
There is android.telephony.gsm.SmsMessage class
http://code.google.com/android/referenc ... ssage.html
which has some constants like ENCODING_8BIT, which may be handy for unicode sms.
But, as I already told, SDK documentation is stupid and has no examples. And I do not understand what does this class even suppose to do.
Also this question was asked in android groups with zero answer:
http://groups.google.com/group/android- ... 18ca89c4de
Although, there should be some way to send unicode sms, because the aPowerSMS app do this, unfortunately it is not open source.