Thanks for the info, the content observer works, Using pending
intents with the SmsManger does not seem to work, the intent gets
broadcast that the message was sent, even if you have no signal or SIM
card in the device, the content obsever does actually tell if the
message was sent from the device reliably. Good to know.

                  Mark


On Feb 27, 4:13 am, jarkman <jark...@gmail.com> wrote:
> Take a look 
> here:http://groups.google.com/group/android-developers/browse_thread/threa...
>
> and here:http://code.google.com/p/android/issues/detail?id=914
>
> Basically, you can do it by registering a content observer on the SMS
> message store. But the details are not in the SDK, which is either a
> simple omission or a hint that they may change in the future. Try
> this:
>
>   ContentResolver contentResolver = context.getContentResolver();
>   contentResolver.registerContentObserver(Uri.parse("content://
> sms"),true, myObserver);
>
> Richard
>
> On Feb 27, 2:36 am, Geos <george.kremenet...@gmail.com> wrote:
>
>
>
> > Please help.
>
> > Who knows how to detect SMS sending from the phone?
> > I saw a lot of posts about android.provider.Telephony.SMS_RECEIVED but
> > it's only for SMS receiving.
> > May be You can suggest some forums where I can ask specialist from
> > Google about it?
>
> > Thank You.- Hide quoted text -
>
> - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
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