Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the URI for SMS Draft Content Provider?

What is the Native Content URI for SMS Drafts?

like image 977
Antony Avatar asked May 04 '12 17:05

Antony


2 Answers

You can open each SMS message part by opening different ways.

  1. Inbox = "content://sms/inbox"
  2. Failed = "content://sms/failed"
  3. Queued = "content://sms/queued"
  4. Sent = "content://sms/sent"
  5. Draft = "content://sms/draft"
  6. Outbox = "content://sms/outbox"
  7. Undelivered = "content://sms/undelivered"
  8. All = "content://sms/all"
  9. Conversations = "content://sms/conversations".
like image 105
swiftBoy Avatar answered Oct 21 '22 00:10

swiftBoy


Content Provider URI for SMS is commonly

   content://sms/...

and for SMS Drafts it is

   content://sms/drafts/
like image 25
user1368606 Avatar answered Oct 21 '22 01:10

user1368606