I am working on an Android sms application.
I have a problem with sending SMSs. If the message length is exceeds 160 then I have to send those sms as two, ie chars 0-159 in the first sms and the remaining in the second.
When the SMS reaches the Inbox it must be merged back into a single message.
Is there any way to do this?
Please help me friends.
Have you looked at multipart (concatenated) SMS? See http://en.wikipedia.org/wiki/Concatenated_SMS
On Android you can send multipart SMS using
SmsManager.sendMultipartTextMessage()and when you receive a message you get the whole thing in the INBOX (the parts are concatenated by the SMS system on the phone automatically).See http://developer.android.com/reference/android/telephony/SmsManager.html