Hi All,
I am beginner to Android platform.
I would like to know how to capture the SMS messages that i sent using SMS
service.
I have used my own editor instead of Messaging Composer.
I am able to send the messages using the SMS service from my Editor but
Some how i could not see the messages in Messaging application.
*Here is the code snippet used:*
*//---sending message using SMS service API ---
private void sendSMS(String phoneNumber, String message)
{
PendingIntent pi = PendingIntent.getActivity(this, 0,
new Intent(this, SMS.class), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, pi, null);
}*
Any help would be appreciated.
Best Regards,
Bindu
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---