I am developing an Android program where I need to send message to some people. Here I have the phone numbers of the people in my database. Is there any Android source code to broadcast message to those people. Thanks in Advance!!!
A:
Take a look at using the ACTION_SEND action in an intent, along with the EXTRA_SUBJECT, EXTRA_TEXT and others to send Email or SMS messages (or others, if they are available). Android then looks for possible ways to send your data and presents the user with a choice, if possible.
That's all described in the reference section of the developer site: http://developer.android.com/reference/android/content/Intent.html
brione
2010-08-05 12:21:28