Hello there, in my app i need to be able to send a text message in a
background, without any user intervention. I found a way to do that
using SmsManager (code below). It sure does send a message but the
popup asking me to choose a delivery method still shows up (even after
the message is sent). I realize that I do have Google Voice installed
thus the popup. Is there a way for me to avoid displaying this popup
while sending text message? Also when i use text messaging as my
default method i get presented with a blank form to send an actual
text message but the message gets sent in the background. Possible to
hide that? Perhaps there is another way to do this?

Any help is greatly appreciated.

SmsManager sm = SmsManager.getDefault();
sm.sendTextMessage(number, null, message, null, null);

-- 
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

Reply via email to