I want to send sms.
What is the intent for SMS sending...or any other code? I want to show compose sms view with my pre-define text passing over in message field.
Is there any help for that?
I want to send sms.
What is the intent for SMS sending...or any other code? I want to show compose sms view with my pre-define text passing over in message field.
Is there any help for that?
This allows to send text message through existing app. phoneNumber - is String. If you do not wish to specify phone number, use empty string "".
Only thing which worked for me is:
Hope this code helps you out :)
You can use this to send sms to any number.
Use this in XML
Use this in Activity Class
Need SEND_SMS permission.
In Android , we have the class SmsManager which manages SMS operations such as sending data, text, and pdu SMS messages. Get this object by calling the static method SmsManager.getDefault().
SmsManager Javadoc
Check the following link to get the sample code for sending SMS:
article on sending and receiving SMS messages in Android
This worked for me.
You can add this line in AndroidManifest.xml
Take a look at this
This may be helpful for you.