Actually i have a confusion ....
By Emulator can we send the SMS to Mobile .........
i have a an appliction SMS Message
can u give any hints if it possible to sent the Sms by emulator means
my code is
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";
PendingIntent pi = PendingIntent.getActivity(this, 0,
new Intent(this, SMS.class), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, pi,
null);
PendingIntent sentPI = PendingIntent.getBroadcast(this,0,new
Intent(SENT),0);
PendingIntent deliveredPI = PendingIntent.getBroadcast(this,
0,new Intent(DELIVERED), 0);
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---