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?
|
|
You can use the following code:
Make sure you set |
|||||||||||||
|
|
This is works for me.
You can add this line in AndroidManifest.xml
Take a look at this This may helpful for you. |
||||
|
|
|
Hi let's try the below code..and design your layout with edittext and and send button and place the sendSMS("99999999999", "message"); in sendbutton click event.
Place the permission uses-permission android:name="android.permission.SEND_SMS" in android manifest file, i hope it may help you a little... |
|||||||
|
|
This will definitely work, In this, Send message without using any intent .
This code is used for send message in background (Not showing message composer), It can also work inside the Broadcast receiver. If you want to send a message from Broadcast receiver.
|
|||||||||
|
|
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(). Check the following link to get the sample code for sending SMS: |
||||
|
|
|
Some of what is explained above is meant only for placing an SMS in a 'ready to launch' state. as Senthil Mg said you can use sms manager to send the sms directly but SMSManager has been moved to android.telephonySmsManager. I know it's not a lot of more info, but it might help someone some day. |
|||
|
|