This video tutorial tells you about how to send SMS using android intent.
For sending an SMS using Implicit Intent, call the intent like this:-
// call Intent to send sms
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromParts("sms", "9897123456", null));
intent.putExtra("sms_body", "Hello Dear...");
startActivity(intent);
0 Comment(s)