Hello...use this code to solve ur problem....
you have missed to call PendingIntent deliveredPI..
this code working fine...i am already used in a project...

PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,new Intent(SENT),
0);

PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0,new
Intent(DELIVERED), 0);

sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to