Saturday, 6 April 2013

How to send an SMS from my android application?


   It's easy to send SMS Messages using the SmsManager. 

         SmsManager m = SmsManager.getDefault();
         String destination = "xxxxxxxxxxx";
         String text = "Hello, Jenny!";
         m.sendTextMessage(destination, null, text, null, null);

No comments:

Post a Comment

Disqus for Android