Android: Get all sent sms? (outgoing)

I am writing an application to backup all text messages. I worked on it for a while, and I only realized that the method that I use to extract sms only gets the ones I received (incoming).

Is there any way to get outbox?

If this is not in the Android API, is it possible to get it from the default SMS application? Even if not everyone uses it, it will work so far, it is urgent.

+5
source share
1 answer

to receive sent messages you need to read sent-directory

Use this uri request

Uri.parse("content://sms/sent");
+10
source

All Articles