Java – How to add SMS in inbox and sent messages in android programmatically

androidjavasdksms

I'm trying to write an app that has to manipulate my inbox and my sent messages without sending or receiving a message.

This tutorial shows me how I can send messages, but I want my phone to think that I sent one, without actually sending one.

I've searched in the Android References and I think I need to use:

  • SMS Manager
  • SMS Message

How can I do this?

Best Answer

You can get a ContentProvider with URL "content://sms/inbox" and "content://sms/sent" and do an insert there.