Android 1.5: Reading SMS messages

There is a content provider for accessing SMS messages, but it’s not documented in the public SDK. If you use ContentResolver.query() with a Uri of content://sms you should be able to access these messages.

You can find more information on this Google Groups thread or previous questions on stackoverflow.

Leave a Comment