I know that the SMS content provider is not part of the public api
(atleast not documented), but if I understand correctly its still
possible to use much of the sms features as long as you know how to
use the api(?).

E.g its pretty straight forward to insert an sms in your inbox:

 ContentValues values = new ContentValues();
 values.put("address", "+467014921911");
 contentResolver.insert(Uri.parse("content://sms/inbox"), values);

Unfortunately this does not trigger the standard "new-sms-in-your-
inbox" notification. Is it possible to trigger this manually?

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